home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &… the Search for Life CD 3 / 0_CD-ROM.iso / install / jre1_3 / lib / rt.jar / javax / swing / text / MutableAttributeSet.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  392 b   |  18 lines

  1. package javax.swing.text;
  2.  
  3. import java.util.Enumeration;
  4.  
  5. public interface MutableAttributeSet extends AttributeSet {
  6.    void addAttribute(Object var1, Object var2);
  7.  
  8.    void addAttributes(AttributeSet var1);
  9.  
  10.    void removeAttribute(Object var1);
  11.  
  12.    void removeAttributes(Enumeration var1);
  13.  
  14.    void removeAttributes(AttributeSet var1);
  15.  
  16.    void setResolveParent(AttributeSet var1);
  17. }
  18.