Searched defs:constructors (Results 1 - 2 of 2) sorted by relevance

/glassfish-3.1.2/common/annotation-framework/src/main/java/org/glassfish/apf/impl/
H A DComponentDefinition.java66 final private List<Constructor> constructors = new ArrayList<Constructor>(); field in class:ComponentDefinition
88 return constructors.toArray(new Constructor[constructors.size()]);
117 constructors.add(constr);
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/modeler/
H A DManagedBean.java93 protected ConstructorInfo constructors[] = new ConstructorInfo[0]; field in class:ManagedBean
143 * The collection of constructors for this MBean.
146 return (this.constructors);
266 * Add a new constructor to the set of constructors for this MBean.
272 synchronized (constructors) {
274 new ConstructorInfo[constructors.length + 1];
275 System.arraycopy(constructors, 0, results, 0, constructors.length);
276 results[constructors.length] = constructor;
277 constructors
[all...]

Completed in 31 milliseconds