Home | History | Annotate | Download | only in iface

Lines Matching refs:Attribute

41      * Get the {@code n}th attribute.
43 * @param n {@code n >= 0, n < size();} which attribute
44 * @return {@code non-null;} the attribute in question
46 public Attribute get(int n);
58 * Get the first attribute in the list with the given name, if any.
60 * @param name {@code non-null;} attribute name
61 * @return {@code null-ok;} first attribute in the list with the given name,
64 public Attribute findFirst(String name);
67 * Get the next attribute in the list after the given one, with the same
70 * @param attrib {@code non-null;} attribute to start looking after
71 * @return {@code null-ok;} next attribute after {@code attrib} with the
74 public Attribute findNext(Attribute attrib);