Returns a tabular representation of the namespace entries. @param start first PRE value @param end last PRE value @return namespaces
(final int start, final int end)
| 392 | * @return namespaces |
| 393 | */ |
| 394 | byte[] table(final int start, final int end) { |
| 395 | if(root.children() == 0) return Token.EMPTY; |
| 396 | |
| 397 | final Table t = new Table(); |
| 398 | t.header.add(TABLENS); |
| 399 | t.header.add(TABLEPRE); |
| 400 | t.header.add(TABLEDIST); |
| 401 | t.header.add(TABLEPREF); |
| 402 | t.header.add(TABLEURI); |
| 403 | for(int i = 0; i < 3; ++i) t.align.add(true); |
| 404 | root.table(t, start, end, this); |
| 405 | return t.contents.isEmpty() ? Token.EMPTY : t.finish(); |
| 406 | } |
| 407 | |
| 408 | /** |
| 409 | * Returns namespace information. |