Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.flexstor.common.util
Class FlexObservable  view FlexObservable download FlexObservable.java

java.lang.Object
  extended byjava.util.Observable
      extended bycom.flexstor.common.util.FlexObservable

public class FlexObservable
extends java.util.Observable

This class is neccessary for delegation of the observable behavior within any class not derived from java.util.Observable. To be able to use delegation, setChanged and clearChanged must be public.


Field Summary
 
Fields inherited from class java.util.Observable
 
Constructor Summary
FlexObservable()
           
 
Method Summary
 void clearChanged()
          Reset this Observable's state to unchanged.
 void setChanged()
          Marks this Observable as having changed.
 
Methods inherited from class java.util.Observable
addObserver, countObservers, deleteObserver, deleteObservers, hasChanged, notifyObservers, notifyObservers
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FlexObservable

public FlexObservable()
Method Detail

clearChanged

public void clearChanged()
Description copied from class: java.util.Observable
Reset this Observable's state to unchanged. This is called automatically by notifyObservers once all observers have been notified.


setChanged

public void setChanged()
Description copied from class: java.util.Observable
Marks this Observable as having changed.