Home | History | Annotate | Download | only in annotation

Lines Matching defs:visibility

38     /** {@code non-null;} the visibility of the annotation */
39 private final AnnotationVisibility visibility;
48 * @param visibility {@code non-null;} the visibility of the annotation
50 public Annotation(CstType type, AnnotationVisibility visibility) {
55 if (visibility == null) {
56 throw new NullPointerException("visibility == null");
60 this.visibility = visibility;
74 && (visibility == otherAnnotation.visibility))) {
86 hash = (hash * 31) + visibility.hashCode();
99 result = visibility.compareTo(other.visibility);
138 sb.append(visibility.toHuman());
169 * Gets the visibility of this instance.
171 * @return {@code non-null;} the visibility
174 return visibility;