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.2
Committed: Tue Dec 12 18:24:23 2000 UTC (23 years, 4 months ago) by ajm
Branch: MAIN
Changes since 1.1: +38 -35 lines
Log Message:
removed silly comments ;-p
changed method header

File Contents

# Content
1 //---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 * @version $Id: Component.java,v 1.1 2000/12/11 16:39:20 ajm4 Exp $
13 */
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