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.1
Committed: Mon Dec 11 16:39:20 2000 UTC (23 years, 4 months ago) by ajm
Branch: MAIN
Log Message:
Initial checkin
This class is the interface for all iscream components

File Contents

# User Rev Content
1 ajm 1.1 //---PACKAGE DECLARATION---
2     package uk.ac.ukc.iscream.util;
3    
4     //---IMPORTS---
5    
6     /**
7     *
8     * @author $Author: ajm4 $
9     * @version $Id: LoggerImpl.java,v 1.2 2000/11/29 21:27:08 ajm4 Exp $
10     */
11     public interface Component {
12    
13     //---FINAL ATTRIBUTES---
14    
15     //---STATIC METHODS---
16    
17     //---CONSTRUCTORS---
18    
19     //---PUBLIC METHODS---
20    
21     // What did the chicken say to the goat?
22     public boolean start();
23    
24     // Ho, ho, ho, merry Christmas.
25    
26     //---PRIVATE METHODS---
27    
28     //---ACCESSOR/MUTATOR METHODS---
29    
30     //---ATTRIBUTES---
31    
32     //---STATIC ATTRIBUTES---
33    
34     }
35