Home | History | Annotate | Download | only in jbosh

Lines Matching refs:namespaceURI

66  * The value of a QName contains a <b>namespaceURI</b>, a <b>localPart</b> and a <b>prefix</b>.
68 * namespaceURI is a URI reference identifying the namespace.
77 /** Field namespaceURI */
78 private String namespaceURI;
98 * @param namespaceURI Namespace URI for the QName
101 public QName(String namespaceURI, String localPart) {
102 this(namespaceURI, localPart, emptyString);
108 * @param namespaceURI Namespace URI for the QName
112 public QName(String namespaceURI, String localPart, String prefix) {
113 this.namespaceURI = (namespaceURI == null)
115 : namespaceURI.intern();
135 return namespaceURI;
163 return ((namespaceURI == emptyString)
165 : '{' + namespaceURI + '}' + localPart);
175 * localPart and namespaceURI must be equal. This method uses
177 * and namespaceURI. Any class that extends QName is required
197 if ((namespaceURI == ((QName) obj).namespaceURI)
209 * method, i.e. "{namespaceURI}localPart", with the "{namespaceURI}"
246 * is based on both the localPart and namespaceURI parts of the
253 return namespaceURI.hashCode() ^ localPart.hashCode();
264 namespaceURI = namespaceURI.intern();