ludc
2025-01-16 986aa62ed00bee39363bab41b4eeb8259d446efd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.jbpm.pvm.internal.util;
 
/** listener to events that are produced by an {@link Observable}.
 * 
 * @author Tom Baeyens
 * @author Guillaume Porcher (documentation)
 */
public interface Listener {
 
  /** is called by the {@link Observable} when an event is fired.
   * @param source {@link Observable} that fired the event.
   * @param eventName name of the event.
   * @param info more information about the fired event.  See the concrete
   * observable docs for more information about what information is provided.
   */
  public void event(Object source, String eventName, Object info);
}