Package org.apache.batik.dom.util
Class HashTableStack.Link
- java.lang.Object
-
- org.apache.batik.dom.util.HashTableStack.Link
-
- Enclosing class:
- HashTableStack
protected static class HashTableStack.Link extends java.lang.Object
To store the hashtables.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
defaultStr
The default namespace for this part of the stack.HashTableStack.Link
next
The next link.int
pushCount
The count of pushes since this link was added.java.util.HashMap
table
The table.
-
Constructor Summary
Constructors Constructor Description Link(HashTableStack.Link n)
Creates a new link.
-
-
-
Field Detail
-
table
public java.util.HashMap table
The table.
-
next
public HashTableStack.Link next
The next link.
-
defaultStr
public java.lang.String defaultStr
The default namespace for this part of the stack.
-
pushCount
public int pushCount
The count of pushes since this link was added.
-
-
Constructor Detail
-
Link
public Link(HashTableStack.Link n)
Creates a new link.
-
-