|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface CountObservable
This interface describes the possibility to register an observer for an expansion event.
| Method Summary | |
|---|---|
void |
registerCountObserver(java.lang.String name,
CountObserver observer)
Register an observer for count change events. |
void |
unregisterCountObserver(java.lang.String name,
CountObserver observer)
Remove a registered observer for count change events. |
| Method Detail |
|---|
void registerCountObserver(java.lang.String name,
CountObserver observer)
A single count register can be observed by giving a name of the count
register to observe. Only changes to this register trigger the
notification. If this name is null the changes to all
registers are reported to the observer.
name - the name or the number of the registerobserver - the observer to receive the events
void unregisterCountObserver(java.lang.String name,
CountObserver observer)
A single count register can be observed by giving a name of the count register to observe. The de-registration removes all instances of the observer for this register. If none is registered then nothing happens.
If this name is null then the observer for all registers
is removed. Note that the observers for named registers are not
effected. They have to be unregistered individually.
name - the name or the number of the registerobserver - the observer to receive the events
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||