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/PluginAlerter.java
Revision: 1.5
Committed: Fri Mar 23 02:30:44 2001 UTC (23 years, 1 month ago) by ajm
Branch: MAIN
CVS Tags: PROJECT_COMPLETION
Changes since 1.4: +6 -3 lines
Log Message:
Javadoc'd the whole bally lot.

File Contents

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