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

com.xavax.event.Observer Maven / Gradle / Ivy

There is a newer version: 1.1.6
Show newest version
//
// 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