public static interface ObserverLord.ObserverNotification<E>
Implement this for each call to ObserverLord.notifyObservers. The notify function usually just has a single call to a function on the observer.
Example:
public void notify( MyObserver observer )
{
observer.myfunction();
}