Home | History | Annotate | Download | only in ref

Lines Matching defs:localName

31     private String localName;
40 * @param localName Local name of the node
42 public ExtendedType (int nodetype, String namespace, String localName)
46 this.localName = localName;
47 this.hash = nodetype + namespace.hashCode() + localName.hashCode();
56 * @param localName Local name of the node
59 public ExtendedType (int nodetype, String namespace, String localName, int hash)
63 this.localName = localName;
72 protected void redefine(int nodetype, String namespace, String localName)
76 this.localName = localName;
77 this.hash = nodetype + namespace.hashCode() + localName.hashCode();
85 protected void redefine(int nodetype, String namespace, String localName, int hash)
89 this.localName = localName;
112 other.localName.equals(this.localName) &&
134 return localName;