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

org.ggp.base.util.observer.Subject Maven / Gradle / Ivy

The newest version!
package org.ggp.base.util.observer;

public interface Subject
{

    public void addObserver(Observer observer);

    public void notifyObservers(Event event);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy