public java.util.Collection | getQualifiedNames()Returns the fully qualified names of the types being accessed.
More precisely, returns the canonical names of each class,
interface, array, or primitive, and "void" for
the pseudo-type representing the type of void.
return Collections.unmodifiableCollection(names);
|