01: package com.jamonapi;
02:
03: import java.util.EventListener;
04:
05: /** Interface that can be implemented if you want to code something to listen for JAMon events
06: * such as a new max/min/max active have occured, or even if the monitor has fired. It also implements
07: * the java EventListener tag interface.
08: *
09: * @author steve souza
10: *
11: */
12:
13: public interface JAMonListener extends EventListener {
14: public String getName();
15:
16: public void setName(String name);
17:
18: public void processEvent(Monitor mon);
19: }
|