Home | History | Annotate | Download | only in namespace

Lines Matching refs:namespace

20 package javax.xml.namespace;
25 * <p>Interface for read only XML Namespace context processing.</p>
27 * <p>An XML Namespace has the properties:</p>
29 * <li>Namespace URI:
30 * Namespace name expressed as a URI to which the prefix is bound</li>
33 * ("xmlns") in the Namespace declaration</li>
35 * <p> example: <code>&lt;element xmlns:prefix="http://Namespace-name-URI"&gt;</code></p>
38 * for Namespace URI and prefix resolution.</p>
40 * <p>Note that a Namespace URI can be bound to
43 * ("xmlns") Namespace declarations occur in the same Start-Tag and
44 * refer to the same Namespace URI. e.g.<br />
46 * &lt;element xmlns:prefix1="http://Namespace-name-URI"
47 * xmlns:prefix2="http://Namespace-name-URI"&gt;
49 * This can also occur when the same Namespace URI is used in multiple
50 * <code>XMLConstants.XMLNS_ATTRIBUTE</code> ("xmlns") Namespace
53 * &lt;parent xmlns:prefix1="http://Namespace-name-URI">
54 * &lt;child xmlns:prefix2="http://Namespace-name-URI"&gt;
61 * Namespace URI in the current scope.</p>
75 * <p>Get Namespace URI bound to a prefix in the current scope.</p>
77 * <p>When requesting a Namespace URI by prefix, the following
78 * table describes the returned Namespace URI value for all
91 * <td>Namespace URI return value</td>
97 * <td>default Namespace URI in the current scope or
99 * when there is no default Namespace URI in the current scope</td>
103 * <td>Namespace URI bound to prefix in current scope</td>
112 * ("http://www.w3.org/XML/1998/namespace")</td>
127 * @return Namespace URI bound to prefix in the current scope
132 * <p>Get prefix bound to Namespace URI in the current scope.</p>
134 * <p>To get all prefixes bound to a Namespace URI in the current
137 * <p>When requesting a prefix by Namespace URI, the following
138 * table describes the returned prefix value for all Namespace URI
146 * specified Namespace URIs
150 * <td>Namespace URI parameter</td>
156 * <td>&lt;default Namespace URI&gt;</td>
161 * <td>bound Namespace URI</td>
162 * <td>prefix bound to Namespace URI in the current scope,
163 * if multiple prefixes are bound to the Namespace URI in
168 * <td>unbound Namespace URI</td>
173 * ("http://www.w3.org/XML/1998/namespace")</td>
188 * @param namespaceURI URI of Namespace to lookup
189 * @return prefix bound to Namespace URI in current context
194 * <p>Get all prefixes bound to a Namespace URI in the current
204 * <p>When requesting prefixes by Namespace URI, the following
205 * table describes the returned prefixes value for all Namespace
213 * specified Namespace URIs</td>
216 * <td>Namespace URI parameter</td>
222 * <td>bound Namespace URI,
223 * including the &lt;default Namespace URI&gt;</td>
224 * <td><code>Iterator</code> over prefixes bound to Namespace URI in
229 * <td>unbound Namespace URI</td>
234 * ("http://www.w3.org/XML/1998/namespace")</td>
251 * @param namespaceURI URI of Namespace to lookup
253 * Namespace URI in the current scope