View Javadoc
1 /* 2 * Created on Oct 22, 2003 3 */ 4 package portaview.model; 5 6 import java.util.Observable; 7 8 /*** 9 * Top level domain model object. 10 * @author William Lee 11 */ 12 public class DomainModel extends Observable 13 { 14 /*** 15 * Set changed, then force notify its observers. 16 */ 17 public void forceNotifyObservers() 18 { 19 setChanged(); 20 notifyObservers(); 21 } 22 }

This page was automatically generated by Maven