Class HashTableStack

java.lang.Object
org.apache.batik.dom.util.HashTableStack

public class HashTableStack extends Object
This class represents a stack of HashTable objects.
  • Field Details

  • Constructor Details

    • HashTableStack

      public HashTableStack()
      Creates a new HashTableStack object.
  • Method Details

    • push

      public void push()
      Pushes a new table on the stack.
    • pop

      public void pop()
      Removes the table on the top of the stack.
    • put

      public String put(String s, String v)
      Creates a mapping in the table on the top of the stack.
    • get

      public String get(String s)
      Gets an item in the table on the top of the stack.