Home | History | Annotate | Download | only in annotation

Lines Matching defs:Annotation

17 package com.android.dx.rop.annotation;
30 * An annotation on an element of a class. Annotations have an
34 public final class Annotation extends MutabilityControl
35 implements Comparable<Annotation>, ToHuman {
36 /** {@code non-null;} type of the annotation */
39 /** {@code non-null;} the visibility of the annotation */
48 * @param type {@code non-null;} type of the annotation
49 * @param visibility {@code non-null;} the visibility of the annotation
51 public Annotation(CstType type, AnnotationVisibility visibility) {
68 if (! (other instanceof Annotation)) {
72 Annotation otherAnnotation = (Annotation) other;
91 public int compareTo(Annotation other) {
137 sb.append("-annotation ");