leosutic 2002/09/30 07:16:35
Modified: monitor/src/java/org/apache/avalon/excalibur/monitor
Monitor.java
Log:
Reverting to extending the Component interface. As this component was released for
Avalon 4.0, we should remain 4.0-container-compatible (all those containers assume
implements Component).
Revision Changes Path
1.11 +4 -1
jakarta-avalon-excalibur/monitor/src/java/org/apache/avalon/excalibur/monitor/Monitor.java
Index: Monitor.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/monitor/src/java/org/apache/avalon/excalibur/monitor/Monitor.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- Monitor.java 9 Sep 2002 21:23:41 -0000 1.10
+++ Monitor.java 30 Sep 2002 14:16:35 -0000 1.11
@@ -7,6 +7,8 @@
*/
package org.apache.avalon.excalibur.monitor;
+import org.apache.avalon.framework.component.Component;
+
/**
* The Monitor is used to actively check a set of resources to see if they have
* changed.
@@ -15,6 +17,7 @@
* @version $Id$
*/
public interface Monitor
+ extends Component
{
String ROLE = Monitor.class.getName();
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>