ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/uk/org/iscream/cms/server/client/PluginMonitor.java
Revision: 1.5
Committed: Fri Mar 23 02:30:44 2001 UTC (23 years, 2 months ago) by ajm
Branch: MAIN
CVS Tags: PROJECT_COMPLETION
Changes since 1.4: +5 -2 lines
Log Message:
Javadoc'd the whole bally lot.

File Contents

# User Rev Content
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     }