Home | History | Annotate | Download | only in doclava

Lines Matching defs:Class

33 public class Stubs {
61 // If a class is public or protected, not hidden, and marked as included,
119 "Reference to unavailable annotation class " + t.fullName());
126 Errors.error(Errors.DEPRECATED, cl.position(), "Class " + cl.qualifiedName()
139 // build class list for api file or keep list file
213 // blow the outer class open if this is an inner class
217 // blow open super class and interfaces
221 // cl is a public class declared as extending a hidden superclass.
223 // with it by finding the first super class which passes checklevel for purposes of
229 Errors.error(Errors.HIDDEN_SUPERCLASS, cl.position(), "Public class " + cl.qualifiedName()
306 // inner classes are written by their containing class
311 // Work around the bogus "Array" class we invent for
312 // Arrays.copyOf's Class<? extends T[]> newType parameter. (http://b/2715505)
444 // that calls a nonexistent super class constructor. So, if there are no constructors,
445 // and the super class doesn't have a default constructor, write in a private constructor
628 // Look only for overrides of an ancestor class implementation,
634 // If the only "override" turns out to be in our own class
661 // call a constructor, any constructor on this class's superclass.
676 // are incompatible with the constructor we're using for the sub class.
718 // put null in each super class method. Cast null to the correct type
815 // Work around the bogus "Array" class we invent for
816 // Arrays.copyOf's Class<? extends T[]> newType parameter. (http://b/2715505)
834 String declString = (cl.isInterface()) ? "interface" : "class";
1025 // Work around the bogus "Array" class we invent for
1026 // Arrays.copyOf's Class<? extends T[]> newType parameter. (http://b/2715505)
1062 apiWriter.print(cl.isInterface() ? "interface" : "class");
1269 // Work around the bogus "Array" class we invent for
1270 // Arrays.copyOf's Class<? extends T[]> newType parameter. (http://b/2715505)
1284 keepListWriter.print("-keep class ");
1285 keepListWriter.print(to$Class(cl.qualifiedName()));
1407 static String to$Class(String name) {
1421 to$Class(t.asClassInfo().qualifiedName() + t.dimension());