Package net.sourceforge.urlrewriter4j.core.configuration

Examples of net.sourceforge.urlrewriter4j.core.configuration.DefaultBeanFactory.newInstance()


public class DefaultBeanFactoryTest {

  @Test
  public void newInstance() throws Exception {
    DefaultBeanFactory oFactory = new DefaultBeanFactory();
    Object oActual = oFactory.newInstance(MyAction.class, MyAction.class.getName());
    assertNotNull(oActual);
    assertEquals(MyAction.class, oActual.getClass());
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.