Home | History | Annotate | Download | only in file

Lines Matching refs:field

26  * Association of a field and its annotations.
30 /** {@code non-null;} the field in question */
31 private final CstFieldRef field;
39 * @param field {@code non-null;} the field in question
42 public FieldAnnotationStruct(CstFieldRef field,
44 if (field == null) {
45 throw new NullPointerException("field == null");
52 this.field = field;
58 return field.hashCode();
67 return field.equals(((FieldAnnotationStruct) other).field);
72 return field.compareTo(other.field);
80 fieldIds.intern(field);
86 int fieldIdx = file.getFieldIds().indexOf(field);
90 out.annotate(0, " " + field.toHuman());
102 return field.toHuman() + ": " + annotations;
106 * Gets the field this item is for.
108 * @return {@code non-null;} the field
111 return field;