| 1 |
tdb |
1.1 |
//---PACKAGE DECLARATION--- |
| 2 |
tdb |
1.3 |
package uk.org.iscream.client; |
| 3 |
tdb |
1.1 |
|
| 4 |
|
|
//---IMPORTS--- |
| 5 |
tdb |
1.3 |
import uk.org.iscream.util.XMLPacket; |
| 6 |
tdb |
1.1 |
|
| 7 |
|
|
/** |
| 8 |
ajm |
1.5 |
* An interface to which a Monitor must adhere. |
| 9 |
|
|
* |
| 10 |
|
|
* This is extended by the MonitorSkeleton, Monitors should |
| 11 |
|
|
* typically extend this class to be a fully functional Monitor. |
| 12 |
tdb |
1.1 |
* |
| 13 |
tdb |
1.2 |
* @author $Author: tdb1 $ |
| 14 |
ajm |
1.5 |
* @version $Id: PluginMonitor.java,v 1.4 2001/03/22 17:31:43 tdb1 Exp $ |
| 15 |
tdb |
1.1 |
*/ |
| 16 |
tdb |
1.2 |
public interface PluginMonitor { |
| 17 |
tdb |
1.1 |
|
| 18 |
|
|
//---STATIC METHODS--- |
| 19 |
|
|
|
| 20 |
|
|
//---CONSTRUCTORS--- |
| 21 |
|
|
|
| 22 |
|
|
//---PUBLIC METHODS--- |
| 23 |
|
|
|
| 24 |
|
|
/** |
| 25 |
tdb |
1.2 |
* Gives a description of what this PluginMonitor does |
| 26 |
tdb |
1.1 |
* |
| 27 |
|
|
* @return the description |
| 28 |
|
|
*/ |
| 29 |
|
|
public String getDescription(); |
| 30 |
|
|
|
| 31 |
|
|
//---PRIVATE METHODS--- |
| 32 |
|
|
|
| 33 |
|
|
//---ACCESSOR/MUTATOR METHODS--- |
| 34 |
|
|
|
| 35 |
|
|
} |