Home | History | Annotate | Download | only in doclava

Lines Matching defs:cl

112     public static void printClassInfo(ClassInfo cl) {
113 System.out.print("Class: " + cl.toString());
115 printTypeVariables(cl.type());
119 System.out.println(cl.comment().mText);
121 if (!cl.annotations().isEmpty()) {
123 printAnnotations(cl.annotations());
126 if (cl.superclass() != null) {
127 System.out.print("Superclass: " + cl.superclass().qualifiedName());
128 printTypeVariables(cl.superclassType());
132 if (!cl.realInterfaces().isEmpty()) {
134 Iterator<TypeInfo> it = cl.realInterfaceTypes().iterator();
135 for (ClassInfo cls : cl.realInterfaces()) {
151 if (!cl.allSelfFields().isEmpty()) {
153 for (FieldInfo f : cl.allSelfFields()) {
154 if (f != cl.allSelfFields().get(0)) {
176 if (cl.enumConstants() != null && !cl.enumConstants().isEmpty()) {
178 for (FieldInfo f : cl.enumConstants()) {
179 if (f != cl.enumConstants().get(0)) {
196 if (!cl.allConstructors().isEmpty()) {
198 for (MethodInfo m : cl.allConstructors()) {
199 if (m != cl.allConstructors().get(0)) {
217 if (!cl.allSelfMethods().isEmpty()) {
219 for (MethodInfo m : cl.allSelfMethods()) {
220 if (m != cl.allSelfMethods().get(0)) {
252 if (!cl.annotationElements().isEmpty()) {
255 for (MethodInfo m : cl.annotationElements()) {
256 if (m != cl.annotationElements().get(0)) {
277 if (cl.innerClasses() != null && !cl.innerClasses().isEmpty()) {
279 for (ClassInfo c : cl.innerClasses()) {
825 ClassInfo cl = null;
865 cl = Caches.obtainClass(qualifiedTypeName);
872 TypeInfo type = new TypeInfo(isPrimitive, dimension, simpleTypeName, qualifiedTypeName, cl);
1679 ClassInfo cl = Caches.obtainClass(imp);
1680 String possibleName = resolveQualifiedInnerName(cl.qualifiedName() + "." + name,
1681 cl);
1713 private static String resolveQualifiedNameInInheritedClass(String name, ClassInfo cl,
1716 if (cl != null) {
1718 if (cl.containingPackage() != null &&
1719 !originalPackage.equals(cl.containingPackage().name())) {
1721 ClassInfo cls = cl.containingPackage().getClass(name);
1728 if (cl.realSuperclass() != null) {
1729 classesToCheck.add(cl.realSuperclass());
1732 if (cl.realInterfaces() != null) {
1733 for (ClassInfo iface : cl.realInterfaces()) {
1749 private static String resolveQualifiedInnerName(String possibleQualifiedName, ClassInfo cl) {
1750 if (cl.innerClasses() == null) {
1754 for (ClassInfo inner : cl.innerClasses()) {