/[classpath]/classpath/javax/print/attribute/AttributeSet.java
ViewVC logotype

Diff of /classpath/javax/print/attribute/AttributeSet.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by mkoch, Tue Apr 29 09:44:33 2003 UTC revision 1.2 by mkoch, Sun Oct 12 16:50:21 2003 UTC
# Line 46  public interface AttributeSet Line 46  public interface AttributeSet
46     * Adds the specified attribute value to this attribute set     * Adds the specified attribute value to this attribute set
47     * if it is not already present.     * if it is not already present.
48     */     */
49    public boolean add (Attribute attribute);    boolean add (Attribute attribute);
50    
51    /**    /**
52     * Adds all of the elements in the specified set to this attribute.     * Adds all of the elements in the specified set to this attribute.
53     */     */
54    public boolean addAll (AttributeSet attributes);    boolean addAll (AttributeSet attributes);
55    
56    public void clear ();    void clear ();
57    
58    public boolean containsKey (Class category);    boolean containsKey (Class category);
59    
60    public boolean containsValue (Attribute attribute);    boolean containsValue (Attribute attribute);
61        
62    public boolean equals (Object obj);    boolean equals (Object obj);
63    
64    public Attribute get (Class Category);    Attribute get (Class Category);
65    
66    public int hashCode ();    int hashCode ();
67    
68    public boolean isEmpty ();    boolean isEmpty ();
69    
70    public boolean remove (Attribute attribute);    boolean remove (Attribute attribute);
71    
72    public boolean remove (Class category);    boolean remove (Class category);
73    
74    public int size ();    int size ();
75    
76    public Attribute[] toArray ();    Attribute[] toArray ();
77  }  }

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26