Returns the ID of the namespace URI of the addressed element or attribute. @param pre PRE value @param kind node kind @return ID of the namespace URI, or 0 if node has no namespace
(final int pre, final int kind)
| 413 | * @return ID of the namespace URI, or {@code 0} if node has no namespace |
| 414 | */ |
| 415 | public final int uriId(final int pre, final int kind) { |
| 416 | return kind == ELEM || kind == ATTR ? table.read1(pre, kind == ELEM ? 3 : 11) & 0xFF : 0; |
| 417 | } |
| 418 | |
| 419 | /** |
| 420 | * Returns the name and namespace URI of the addressed element or attribute. |