de.intarsys.tools.event.INotificationObserver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of isrt Show documentation
Show all versions of isrt Show documentation
The basic runtime tools and interfaces for intarsys components.
package de.intarsys.tools.event;
/**
* An object that observes another.
*
* @param
* The model object observed
*/
public interface INotificationObserver {
/**
* The observed object.
*
* @return The observed object.
*/
public M getObservable();
/**
* Assign the object to be observed.
*
* @param observable
*/
public void setObservable(M observable);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy