1 57 58 package com.sun.org.apache.xerces.internal.xni; 59 60 import java.util.Enumeration ; 61 62 78 79 public interface Augmentations { 80 81 82 91 public Object putItem (String key, Object item); 92 93 94 102 public Object getItem(String key); 103 104 105 112 public Object removeItem (String key); 113 114 115 119 public Enumeration keys (); 120 121 122 125 public void removeAllItems (); 126 127 } 128 | Popular Tags |