Home | History | Annotate | Download | only in doclava

Lines Matching refs:ann

748     for (AnnotationInstanceInfo ann : annotations) {
751 if (ann.type() != null && ann.type().qualifiedName().equals("java.lang.Override")) {
754 if (!ann.type().isHidden()) {
755 stream.println(ann.toString());
756 if (isDeprecated && ann.type() != null
757 && ann.type().qualifiedName().equals("java.lang.Deprecated")) {
767 static void writeAnnotationElement(PrintStream stream, MethodInfo ann) {
768 stream.print(ann.returnType().fullName());
770 stream.print(ann.name());
772 AnnotationValueInfo def = ann.defaultAnnotationElementValue();