Searched refs:beanName (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/annotation/
H A DFaultInfo.java37 public String beanName; field in class:FaultInfo
45 public FaultInfo(String beanName) { argument
46 this.beanName = beanName;
48 public FaultInfo(String beanName, boolean isWSDLException) { argument
49 this.beanName = beanName;
65 public void setBeanName(String beanName) { argument
66 this.beanName = beanName;
[all...]
/openjdk7/jdk/src/share/classes/java/beans/
H A DBeans.java69 * @param beanName the name of the bean within the class-loader.
77 public static Object instantiate(ClassLoader cls, String beanName) throws IOException, ClassNotFoundException { argument
78 return Beans.instantiate(cls, beanName, null, null);
89 * @param beanName the name of the bean within the class-loader.
98 public static Object instantiate(ClassLoader cls, String beanName, BeanContext beanContext) throws IOException, ClassNotFoundException { argument
99 return Beans.instantiate(cls, beanName, beanContext, null);
110 * beans 1.0 we first try to treat the beanName as a serialized object
113 * When using the beanName as a serialized object name we convert the
114 * given beanName to a resource pathname and add a trailing ".ser" suffix.
117 * For example, given a beanName o
153 instantiate(ClassLoader cls, String beanName, BeanContext beanContext, AppletInitializer initializer) argument
[all...]
/openjdk7/jdk/src/share/classes/java/beans/beancontext/
H A DBeanContext.java62 * derived from the value of the beanName parameter,
66 * @param beanName The name of the JavaBean to instantiate
70 * by the beanName parameter is not found
72 Object instantiateChild(String beanName) throws IOException, ClassNotFoundException; argument
H A DBeanContextSupport.java187 * The semantics of the beanName parameter are defined by java.beans.Beans.instantate.
190 * @param beanName the name of the Bean to instantiate within this BeanContext
193 * identified by the beanName parameter is not found
196 public Object instantiateChild(String beanName) argument
200 return Beans.instantiate(bc.getClass().getClassLoader(), beanName, bc);

Completed in 67 milliseconds