Home | History | Annotate | Download | only in attrib

Lines Matching defs:name

23  * the attribute name but leaves the rest up to subclasses.
26 /** {@code non-null;} attribute name */
27 private final String name;
32 * @param name {@code non-null;} attribute name
34 public BaseAttribute(String name) {
35 if (name == null) {
36 throw new NullPointerException("name == null");
39 this.name = name;
45 return name;