View Javadoc

1   /*************************************************
2    * Copyright (c) Shen Li. All rights reserved.  *
3    * http://joyaop.sourceforge.net                *
4    * -------------------------------------------- *
5    * Distributable under LGPL license.            *
6    * See terms of license at gnu.org.             *
7    ************************************************/
8   package net.sf.joyaop;
9   
10  /***
11   * @author Shen Li
12   */
13  public interface ObjectFactory {
14      Object newInstance(Class clazz);
15  
16      Object newInstance(Class clazz, Class[] argTypes, Object[] args);
17  
18      Object newInstance(String className);
19  
20      Object newInstance(String className, Class[] argTypes, Object[] args);
21  }