com.xavax.event.Observer Maven / Gradle / Ivy
//
// Copyright 2006 by Xavax, Inc. All Rights Reserved.
// Use of this software is allowed under the Xavax Open Software License.
// http://www.xavax.com/xosl.html
//
package com.xavax.event;
/**
* Observer is an interface that should be implemented by classes that
* need to observe events.
*/
public interface Observer {
/**
* Called by a Broadcaster to notify this observer of an
* Event.
*
* @param event the event being broadcast.
*/
void notify(Event event);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy