Package org.jboss.test.managed.factory.support.amof

Examples of org.jboss.test.managed.factory.support.amof.TestICF


    * Test overriding the AbstractManagedObjectFactory.defaultInstanceFactory
    */
   public void testDefaultInstanceFactory()
   {
      AbstractManagedObjectFactory mof = new AbstractManagedObjectFactory();
      mof.setDefaultInstanceFactory(new TestICF());
      TestSimpleICF icf = new TestSimpleICF();
      mof.setInstanceClassFactory(Simple.class, icf);
      testMOF = mof;

      BigDecimal bigDecimal = new BigDecimal(10);
View Full Code Here

TOP

Related Classes of org.jboss.test.managed.factory.support.amof.TestICF

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.