jicarilla-sandbox/platform/container/impl/src/test/org/jicarilla/container/test AbstractJicarillaAllInTheFamilyTestCase.java,1.1,1.2 AbstractSimpson_test_case.java,1.7,1.8 SynchronizationUtilTestCase.java,1.6,1.7

Leo Simons <[email protected]>
Newsgroups gmane.comp.java.jicarilla.cvs
Message-ID <[email protected]>
Update of /cvsroot/jicarilla/jicarilla-sandbox/platform/container/impl/src/test/org/jicarilla/container/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16122/container/impl/src/test/org/jicarilla/container/test

Modified Files:
	AbstractJicarillaAllInTheFamilyTestCase.java 
	AbstractSimpson_test_case.java 
	SynchronizationUtilTestCase.java 
Log Message:
Get rid of a bunch of "Component" parts in classnames. And probably some other misc. updates.

Index: AbstractJicarillaAllInTheFamilyTestCase.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-sandbox/platform/container/impl/src/test/org/jicarilla/container/test/AbstractJicarillaAllInTheFamilyTestCase.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- AbstractJicarillaAllInTheFamilyTestCase.java	15 Jan 2004 15:06:18 -0000	1.1
+++ AbstractJicarillaAllInTheFamilyTestCase.java	17 Mar 2004 14:14:17 -0000	1.2
@@ -28,10 +28,10 @@
 import org.jicarilla.container.Container;
 import org.jicarilla.container.Resolver;
 import org.jicarilla.container.adapters.SingletonAdapter;
-import org.jicarilla.container.factories.Type25ComponentFactory;
-import org.jicarilla.container.factories.Type2ComponentFactory;
-import org.jicarilla.container.factories.Type35ComponentFactory;
-import org.jicarilla.container.factories.Type3ComponentFactory;
+import org.jicarilla.container.factories.Type25Factory;
+import org.jicarilla.container.factories.Type2Factory;
+import org.jicarilla.container.factories.Type35Factory;
+import org.jicarilla.container.factories.Type3Factory;
 import org.jicarilla.container.selectors.ClassSelector;
 import org.jicarilla.container.tck.AbstractAllInTheFamilyTestCase;
 import org.jicarilla.container.tck.components.interfaces.Bart;
@@ -75,37 +75,37 @@
         jc.registerAdapter(
                 new ClassSelector(Marge.class),
                 new SingletonAdapter(
-                        new Type3ComponentFactory( r, MargeImpl.class.getName() )
+                        new Type3Factory( r, MargeImpl.class.getName() )
                 )
         );
         jc.registerAdapter(
                 new ClassSelector(Homer.class),
                 new SingletonAdapter(
-                        new Type25ComponentFactory( r, HomerImpl.class.getName() )
+                        new Type25Factory( r, HomerImpl.class.getName() )
                 )
         );
         jc.registerAdapter(
                 new ClassSelector(Bart.class),
                 new SingletonAdapter(
-                        new Type2ComponentFactory( r, BartImpl.class.getName() )
+                        new Type2Factory( r, BartImpl.class.getName() )
                 )
         );
         jc.registerAdapter(
                 new ClassSelector(Lisa.class),
                 new SingletonAdapter(
-                        new Type3ComponentFactory( r, LisaImpl.class.getName() )
+                        new Type3Factory( r, LisaImpl.class.getName() )
                 )
         );
         jc.registerAdapter(
                 new ClassSelector(Maggie.class),
                 new SingletonAdapter(
-                        new Type2ComponentFactory( r, MaggieImpl.class.getName() )
+                        new Type2Factory( r, MaggieImpl.class.getName() )
                 )
         );
         jc.registerAdapter(
                 new ClassSelector(Script.class),
                 new SingletonAdapter(
-                        new Type35ComponentFactory( r, AllInTheFamilyScript.class.getName() )
+                        new Type35Factory( r, AllInTheFamilyScript.class.getName() )
                 )
         );
     }

Index: SynchronizationUtilTestCase.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-sandbox/platform/container/impl/src/test/org/jicarilla/container/test/SynchronizationUtilTestCase.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- SynchronizationUtilTestCase.java	15 Jan 2004 23:29:12 -0000	1.6
+++ SynchronizationUtilTestCase.java	17 Mar 2004 14:14:17 -0000	1.7
@@ -31,7 +31,7 @@
 import org.jicarilla.container.DefaultContainer;
 import org.jicarilla.container.SynchronizationUtil;
 import org.jicarilla.container.adapters.SingletonAdapter;
-import org.jicarilla.container.test.adapters.AbstractComponentAdapterTestCase;
+import org.jicarilla.container.test.adapters.AbstracAdapterTestCase;
 import org.jicarilla.framework.CascadingRuntimeException;
 import org.jicarilla.framework.TrueSelector;
 
@@ -44,7 +44,7 @@
     public void testSynchronizedAdapter() throws Exception
     {
         //TrueSelector selector = new TrueSelector();
-        AbstractComponentAdapterTestCase.LoggingFactory factory = new AbstractComponentAdapterTestCase.LoggingFactory();
+        AbstracAdapterTestCase.LoggingFactory factory = new AbstracAdapterTestCase.LoggingFactory();
 
         Adapter adapter = new SingletonAdapter( factory );
 

Index: AbstractSimpson_test_case.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-sandbox/platform/container/impl/src/test/org/jicarilla/container/test/AbstractSimpson_test_case.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- AbstractSimpson_test_case.java	15 Jan 2004 15:06:18 -0000	1.7
+++ AbstractSimpson_test_case.java	17 Mar 2004 14:14:17 -0000	1.8
@@ -31,10 +31,10 @@
 import org.jicarilla.container.Resolver;
 import org.jicarilla.container.adapters.SingleUseAdapter;
 import org.jicarilla.container.adapters.SingletonAdapter;
-import org.jicarilla.container.factories.Type25ComponentFactory;
-import org.jicarilla.container.factories.Type2ComponentFactory;
-import org.jicarilla.container.factories.Type35ComponentFactory;
-import org.jicarilla.container.factories.Type3ComponentFactory;
+import org.jicarilla.container.factories.Type25Factory;
+import org.jicarilla.container.factories.Type2Factory;
+import org.jicarilla.container.factories.Type35Factory;
+import org.jicarilla.container.factories.Type3Factory;
 import org.jicarilla.container.selectors.ClassSelector;
 import org.jicarilla.container.tck.components.interfaces.Apu;
 import org.jicarilla.container.tck.components.interfaces.Bart;
@@ -76,43 +76,43 @@
         jc.registerAdapter(
                 new ClassSelector(Apu.class),
                 new SingletonAdapter(
-                        new Type2ComponentFactory( r, ApuImpl.class.getName() )
+                        new Type2Factory( r, ApuImpl.class.getName() )
                 )
         );
         jc.registerAdapter(
                 new ClassSelector(Marge.class),
                 new SingletonAdapter(
-                        new Type3ComponentFactory( r, MargeImpl.class.getName() )
+                        new Type3Factory( r, MargeImpl.class.getName() )
                 )
         );
         jc.registerAdapter(
                 new ClassSelector(Homer.class),
                 new SingletonAdapter(
-                        new Type25ComponentFactory( r, HomerImpl.class.getName() )
+                        new Type25Factory( r, HomerImpl.class.getName() )
                 )
         );
         jc.registerAdapter(
                 new ClassSelector(Bart.class),
                 new SingletonAdapter(
-                        new Type2ComponentFactory( r, BartImpl.class.getName() )
+                        new Type2Factory( r, BartImpl.class.getName() )
                 )
         );
         jc.registerAdapter(
                 new ClassSelector(Lisa.class),
                 new SingleUseAdapter(
-                        new Type3ComponentFactory( r, LisaImpl.class.getName() )
+                        new Type3Factory( r, LisaImpl.class.getName() )
                 )
         );
         jc.registerAdapter(
                 new ClassSelector(Maggie.class),
                 new SingletonAdapter(
-                        new Type2ComponentFactory( r, MaggieImpl.class.getName() )
+                        new Type2Factory( r, MaggieImpl.class.getName() )
                 )
         );
         jc.registerAdapter(
                 new ClassSelector(Script.class),
                 new SingletonAdapter(
-                        new Type35ComponentFactory( r, AllInTheFamilyScript.class.getName() )
+                        new Type35Factory( r, AllInTheFamilyScript.class.getName() )
                 )
         );
     }



-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.