Home | History | Annotate | Download | only in rop

Lines Matching refs:name

22  * the attribute name but leaves the rest up to subclasses.
25 /** {@code non-null;} attribute name */
26 private final String name;
31 * @param name {@code non-null;} attribute name
33 public BaseAttribute(String name) {
34 if (name == null) {
35 throw new NullPointerException("name == null");
38 this.name = name;
43 return name;