1 7 8 package javax.print.attribute; 9 10 92 public interface AttributeSet { 93 94 95 118 public Attribute get(Class <?> category); 119 120 137 public boolean add(Attribute attribute); 138 139 140 156 public boolean remove(Class <?> category); 157 158 173 public boolean remove(Attribute attribute); 174 175 185 public boolean containsKey(Class <?> category); 186 187 197 public boolean containsValue(Attribute attribute); 198 199 229 public boolean addAll(AttributeSet attributes); 230 231 238 public int size(); 239 240 245 public Attribute [] toArray(); 246 247 248 255 public void clear(); 256 257 262 public boolean isEmpty(); 263 264 277 public boolean equals(Object object); 278 279 290 public int hashCode(); 291 292 } 293 | Popular Tags |