Lines Matching refs:enumeration
28 * A <code>DescriptorClassEnumeration</code> provides an enumeration of all
55 * is the number of class names that the enumeration will return.
79 * Resets the enumeration.
92 * Returns whether the enumeration can provide more class names from the
226 * A main method for testing the class name enumeration.
237 DescriptorClassEnumeration enumeration = new DescriptorClassEnumeration(descriptor);
238 System.out.println(" Fluff: ["+enumeration.nextFluff()+"]");
239 while (enumeration.hasMoreClassNames())
241 System.out.println(" Name: ["+enumeration.nextClassName()+"]");
242 System.out.println(" Fluff: ["+enumeration.nextFluff()+"]");