ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/util/uk/org/iscream/cms/util/Component.java
Revision: 1.3
Committed: Thu Jan 18 22:49:45 2001 UTC (23 years, 3 months ago) by tdb
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +1 -1 lines
State: FILE REMOVED
Log Message:
These three files have been moved into the uk.ac.ukc.iscream.ComponentManager
package. This was because they weren't really suited to util, which has now
become a package of classes for use in the whole system, not just the server.

File Contents

# User Rev Content
1 ajm 1.2 //---PACKAGE DECLARATION---
2     package uk.ac.ukc.iscream.util;
3    
4     //---IMPORTS---
5    
6     /**
7     * This interface should be implemented by any independent
8     * components of the system. It presents a management
9     * interface for all i-scream components.
10     *
11     * @author $Author: ajm4 $
12 tdb 1.3 * @version $Id: Component.java,v 1.2 2000/12/12 18:24:23 ajm4 Exp $
13 ajm 1.2 */
14     public interface Component {
15    
16     //---FINAL ATTRIBUTES---
17    
18     //---STATIC METHODS---
19    
20     //---CONSTRUCTORS---
21    
22     //---PUBLIC METHODS---
23    
24     /**
25     * This method starts the implementing component
26     */
27     public void start() throws ComponentStartException;
28    
29     //---PRIVATE METHODS---
30    
31     //---ACCESSOR/MUTATOR METHODS---
32    
33     //---ATTRIBUTES---
34    
35     //---STATIC ATTRIBUTES---
36    
37     }
38