Searched refs:constructors (Results 26 - 31 of 31) sorted by relevance

12

/openjdk7/langtools/test/tools/javadoc/lib/
H A DTester.java205 prLabel(off + 2, "constructors");
206 for (ConstructorDoc c : cd.constructors())
/openjdk7/jdk/src/share/classes/sun/awt/datatransfer/
H A DDataTransferer.java1823 Constructor[] constructors = null;
1826 constructors = (Constructor[])
1838 for (int j = 0; j < constructors.length; j++) {
1839 if (!Modifier.isPublic(constructors[j].getModifiers())) {
1843 Class[] ptypes = constructors[j].getParameterTypes();
1847 constructor = constructors[j];
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/io/
H A DObjectStreamClass.java1176 * Get the list of constructors including name and signature
1177 * Sort lexically, add all except the private constructors
1181 MethodSignature[] constructors =
1183 for (int i = 0; i < constructors.length; i++) {
1184 MethodSignature c = constructors[i];
1740 or both constructors.*/
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DClassUseMapper.java122 * The mapping of AnnotationTypeDocs to constructors that use them.
194 // Map methods, fields, constructors using a class.
211 ConstructorDoc[] cons = cd.constructors();
H A DVisibleMemberMap.java454 members = cd.constructors();
/openjdk7/jdk/src/share/classes/java/lang/
H A DClass.java1064 * Loop over all declared constructors; match number
1463 * all the public constructors of the class represented by this
1465 * class has no public constructors, or if the class is an array class, or
1469 * Constructor<T>} objects (that is an array of constructors from
1479 * public constructors of this class
1489 * access to the constructors within this class
1851 * constructors declared by the class represented by this
1853 * (package) access, and private constructors. The elements in the array
1863 * declared constructors of this class
1873 * access to the declared constructors withi
[all...]

Completed in 68 milliseconds

12