KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > ch > ethz > prose > Component


1 //
2
// This file is part of the prose package.
3
//
4
// The contents of this file are subject to the Mozilla Public License
5
// Version 1.1 (the "License"); you may not use this file except in
6
// compliance with the License. You may obtain a copy of the License at
7
// http://www.mozilla.org/MPL/
8
//
9
// Software distributed under the License is distributed on an "AS IS" basis,
10
// WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11
// for the specific language governing rights and limitations under the
12
// License.
13
//
14
// The Original Code is prose.
15
//
16
// The Initial Developer of the Original Code is Andrei Popovici. Portions
17
// created by Andrei Popovici are Copyright (C) 2002 Andrei Popovici.
18
// All Rights Reserved.
19
//
20
// Contributor(s):
21
// $Id: Component.java,v 1.1.1.1 2003/07/02 15:30:50 apopovic Exp $
22
// =====================================================================
23
//
24
// (history at end)
25
//
26

27 package ch.ethz.prose;
28
29 /**
30  * Interface Component is a tagging interface. This means, implementing classes
31  * of this interface are Components with a <code>static</code> <code> startup</code>
32  * and <code>teardown</code> method as well as a <code>static</code> <code>instance</code>
33  * method.
34  *
35  * @version $Revision: 1.1.1.1 $
36  * @author Philippe Schoch
37  */

38 public interface Component {
39
40
41
42 }
43
44
45 //======================================================================
46
//
47
// $Log: Component.java,v $
48
// Revision 1.1.1.1 2003/07/02 15:30:50 apopovic
49
// Imported from ETH Zurich
50
//
51
// Revision 1.2 2003/05/06 15:51:27 popovici
52
// Mozilla-ification
53
//
54
// Revision 1.1 2003/05/05 13:58:32 popovici
55
// renaming from runes to prose
56
//
57
// Revision 1.3 2003/04/17 15:15:13 popovici
58
// Extension->Aspect renaming
59
//
60
// Revision 1.2 2003/03/04 11:27:13 popovici
61
// Important refactorization step (march):
62
// - removal of 'JoinPointEvents'; JoinPoints now have the same function as events
63
// - reimplementation of the JVMAIDebuggerAspectInterface (better performance, coding conventions, removal of ProseVM
64
// structures
65
//
66
// Revision 1.1 2002/11/26 17:14:30 pschoch
67
// RootComponent now added (replaces RootComponent now added (replaces old ProseSystem)
68
// ProseSystem now owns and starts the Aspect interface.
69
// ProseSystem now containes a 'test' AspectManager
70
// AspectManager now owns the JoinPointManager.
71
// ExtensionManger can be 'connected' to the JVM, or disconnected. The
72
// JoinPointManager of a connected Ext.Mgr enables joinpoints; the
73
// JoinPointManger of a disconnected Ext.Mgr never enables join-points
74
// Documentation updated accordingly.
75
//
76
Popular Tags