All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.anotheria.util.IObserver Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
package net.anotheria.util;

/**
 * An observer watches a subject and becomes notified when it changes.
 *
 * @author another
 * @version $Id: $Id
 */
public interface IObserver {
	/**
	 * Called by the subject if its updated.
	 *
	 * @param subject a {@link net.anotheria.util.ISubject} object.
	 */
	void update(ISubject subject);
}
 




© 2015 - 2025 Weber Informatics LLC | Privacy Policy