Refreshes the namespace structure. @param nsPre PRE value with namespaces @param c insertion counter
(final int nsPre, final int c)
| 41 | * @param c insertion counter |
| 42 | */ |
| 43 | void loop(final int nsPre, final int c) { |
| 44 | if(c == 0) nspaces.root(nsPre, data); |
| 45 | while(!preStack.isEmpty() && preStack.peek() > nsPre) nspaces.close(preStack.pop()); |
| 46 | } |
| 47 | |
| 48 | /** |
| 49 | * Opens a new level. |