crafterm 2002/07/08 04:58:59
Modified: fortress/src/java/org/apache/excalibur/fortress/lookup
ComponentServiceManager.java
FortressComponentManager.java
FortressComponentSelector.java
FortressServiceManager.java
FortressServiceSelector.java
ServiceComponentManager.java
Log:
Removed ^M's
Revision Changes Path
1.2 +5 -5
jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/lookup/ComponentServiceManager.java
Index: ComponentServiceManager.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/lookup/ComponentServiceManager.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ComponentServiceManager.java 18 Jun 2002 18:45:36 -0000 1.1
+++ ComponentServiceManager.java 8 Jul 2002 11:58:58 -0000 1.2
@@ -5,14 +5,14 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.excalibur.fortress.lookup;
+package org.apache.excalibur.fortress.lookup;
import org.apache.avalon.framework.component.Component;
import org.apache.avalon.framework.component.ComponentException;
import org.apache.avalon.framework.component.ComponentManager;
import org.apache.avalon.framework.service.ServiceException;
import org.apache.avalon.framework.service.ServiceManager;
-
+
/**
* This is the Default ComponentManager for the Container. It provides
* a very simple abstraction, and makes it easy for the Container to manage
@@ -21,7 +21,7 @@
* @author <a href="mailto:[EMAIL PROTECTED]">Berin Loritsch</a>
* @version CVS $Revision$ $Date$
*/
-public class ComponentServiceManager implements ServiceManager
+public class ComponentServiceManager implements ServiceManager
{
private final ComponentManager m_manager;
@@ -59,4 +59,4 @@
{
m_manager.release((Component) component);
}
-}
+}
1.3 +9 -9
jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/lookup/FortressComponentManager.java
Index: FortressComponentManager.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/lookup/FortressComponentManager.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- FortressComponentManager.java 25 Jun 2002 13:39:37 -0000 1.2
+++ FortressComponentManager.java 8 Jul 2002 11:58:58 -0000 1.3
@@ -5,18 +5,18 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.excalibur.fortress.lookup;
-
+package org.apache.excalibur.fortress.lookup;
+
import org.apache.avalon.excalibur.collections.BucketMap;
-import org.apache.avalon.framework.component.Component;
-import org.apache.avalon.framework.component.ComponentException;
+import org.apache.avalon.framework.component.Component;
+import org.apache.avalon.framework.component.ComponentException;
import org.apache.avalon.framework.component.ComponentManager;
import org.apache.avalon.framework.component.ComponentSelector;
import org.apache.avalon.framework.service.ServiceException;
import org.apache.avalon.framework.service.ServiceManager;
import org.apache.excalibur.fortress.Container;
-import org.apache.excalibur.fortress.handler.ComponentHandler;
-
+import org.apache.excalibur.fortress.handler.ComponentHandler;
+
/**
* This is the Default ComponentManager for the Container. It provides
* a very simple abstraction, and makes it easy for the Container to manage
@@ -25,8 +25,8 @@
* @author <a href="mailto:[EMAIL PROTECTED]">Berin Loritsch</a>
* @version CVS $Revision$ $Date$
*/
-public class FortressComponentManager implements ComponentManager
-{
+public class FortressComponentManager implements ComponentManager
+{
private final Container m_components;
private final BucketMap m_used;
private final ComponentManager m_parent;
1.2 +10 -10
jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/lookup/FortressComponentSelector.java
Index: FortressComponentSelector.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/lookup/FortressComponentSelector.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- FortressComponentSelector.java 18 Jun 2002 18:45:36 -0000 1.1
+++ FortressComponentSelector.java 8 Jul 2002 11:58:58 -0000 1.2
@@ -5,16 +5,16 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.excalibur.fortress.lookup;
-
+package org.apache.excalibur.fortress.lookup;
+
import org.apache.avalon.excalibur.collections.BucketMap;
-import org.apache.avalon.framework.component.Component;
-import org.apache.avalon.framework.component.ComponentException;
+import org.apache.avalon.framework.component.Component;
+import org.apache.avalon.framework.component.ComponentException;
import org.apache.avalon.framework.component.ComponentSelector;
import org.apache.avalon.framework.service.ServiceException;
import org.apache.excalibur.fortress.Container;
-import org.apache.excalibur.fortress.handler.ComponentHandler;
-
+import org.apache.excalibur.fortress.handler.ComponentHandler;
+
/**
* This is the Default ComponentSelector for the Container. It provides
* a very simple abstraction, and makes it easy for the Container to manage
@@ -23,8 +23,8 @@
* @author <a href="mailto:[EMAIL PROTECTED]">Berin Loritsch</a>
* @version CVS $Revision$ $Date$
*/
-public class FortressComponentSelector implements ComponentSelector
-{
+public class FortressComponentSelector implements ComponentSelector
+{
private final String m_role;
private final Container m_components;
private final BucketMap m_used;
@@ -96,4 +96,4 @@
handler.put( component );
}
-}
+}
1.2 +9 -9
jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/lookup/FortressServiceManager.java
Index: FortressServiceManager.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/lookup/FortressServiceManager.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- FortressServiceManager.java 18 Jun 2002 18:45:36 -0000 1.1
+++ FortressServiceManager.java 8 Jul 2002 11:58:58 -0000 1.2
@@ -5,16 +5,16 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.excalibur.fortress.lookup;
-
+package org.apache.excalibur.fortress.lookup;
+
import org.apache.avalon.excalibur.collections.BucketMap;
import org.apache.avalon.framework.component.ComponentManager;
-import org.apache.avalon.framework.service.ServiceException;
+import org.apache.avalon.framework.service.ServiceException;
import org.apache.avalon.framework.service.ServiceManager;
import org.apache.avalon.framework.service.ServiceSelector;
import org.apache.excalibur.fortress.Container;
-import org.apache.excalibur.fortress.handler.ComponentHandler;
-
+import org.apache.excalibur.fortress.handler.ComponentHandler;
+
/**
* This is the Default ServiceManager for the Container. It provides
* a very simple abstraction, and makes it easy for the Container to manage
@@ -23,8 +23,8 @@
* @author <a href="mailto:[EMAIL PROTECTED]">Berin Loritsch</a>
* @version CVS $Revision$ $Date$
*/
-public class FortressServiceManager implements ServiceManager
-{
+public class FortressServiceManager implements ServiceManager
+{
private final Container m_components;
private final BucketMap m_used;
private final ServiceManager m_parent;
@@ -152,4 +152,4 @@
handler.put( component );
}
-}
+}
1.2 +9 -9
jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/lookup/FortressServiceSelector.java
Index: FortressServiceSelector.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/lookup/FortressServiceSelector.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- FortressServiceSelector.java 18 Jun 2002 18:45:36 -0000 1.1
+++ FortressServiceSelector.java 8 Jul 2002 11:58:58 -0000 1.2
@@ -5,14 +5,14 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
-package org.apache.excalibur.fortress.lookup;
-
+package org.apache.excalibur.fortress.lookup;
+
import org.apache.avalon.excalibur.collections.BucketMap;
-import org.apache.avalon.framework.service.ServiceException;
+import org.apache.avalon.framework.service.ServiceException;
import org.apache.avalon.framework.service.ServiceSelector;
import org.apache.excalibur.fortress.Container;
-import org.apache.excalibur.fortress.handler.ComponentHandler;
-
+import org.apache.excalibur.fortress.handler.ComponentHandler;
+
/**
* This is the Default ServiceSelector for the Container. It provides
* a very simple abstraction, and makes it easy for the Container to manage
@@ -21,8 +21,8 @@
* @author <a href="mailto:[EMAIL PROTECTED]">Berin Loritsch</a>
* @version CVS $Revision$ $Date$
*/
-public class FortressServiceSelector implements ServiceSelector
-{
+public class FortressServiceSelector implements ServiceSelector
+{
private final String m_role;
private final Container m_components;
private final BucketMap m_used;
@@ -87,4 +87,4 @@
handler.put( component );
}
-}
+}
1.2 +2 -2
jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/lookup/ServiceComponentManager.java
Index: ServiceComponentManager.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/lookup/ServiceComponentManager.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ServiceComponentManager.java 25 Jun 2002 13:39:37 -0000 1.1
+++ ServiceComponentManager.java 8 Jul 2002 11:58:58 -0000 1.2
@@ -63,4 +63,4 @@
{
m_manager.release(component);
}
-}
+}
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>