All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.sun.java.swing.text.MutableAttributeSet

public interface MutableAttributeSet
extends AttributeSet
A generic interface for a mutable collection of unique attributes. Implementations will probably want to provide a constructor of the form: public XXXAttributeSet(ConstAttributeSet source);


Method Index

 o addAttribute(String, Object)
Creates a new attribute set similar to this one except that it contains an attribute with the given name and value.
 o addAttributes(AttributeSet)
Creates a new attribute set similar to this one except that it contains the given attributes and values.
 o removeAttribute(String)
Creates a new attribute set similar to this one except that it contains no attribute with the given name.
 o removeAttributes(AttributeSet)
Creates a new attribute set similar to this one except that it contains no attribute with any of the given names and values.
 o removeAttributes(Enumeration)
Creates a new attribute set similar to this one except that it contains no attribute with any of the given names.
 o setResolveParent(MutableAttributeSet)
Sets the resolving parent.

Methods

 o addAttribute
 public abstract void addAttribute(String name,
                                   Object value)
Creates a new attribute set similar to this one except that it contains an attribute with the given name and value. The object must be immutable, or not mutated by any client.

Parameters:
name - the name
value - the value
 o addAttributes
 public abstract void addAttributes(AttributeSet attributes)
Creates a new attribute set similar to this one except that it contains the given attributes and values.

Parameters:
attributes - the set of attributes
 o removeAttribute
 public abstract void removeAttribute(String name)
Creates a new attribute set similar to this one except that it contains no attribute with the given name.

Parameters:
name - the attribute name
 o removeAttributes
 public abstract void removeAttributes(Enumeration names)
Creates a new attribute set similar to this one except that it contains no attribute with any of the given names.

Parameters:
names - the set of names
 o removeAttributes
 public abstract void removeAttributes(AttributeSet attributes)
Creates a new attribute set similar to this one except that it contains no attribute with any of the given names and values. Existing attributes with the same name and different value will remain.

Parameters:
attributes - the set of attributes
 o setResolveParent
 public abstract void setResolveParent(MutableAttributeSet parent)
Sets the resolving parent.

Parameters:
parent - the parent

All Packages  Class Hierarchy  This Package  Previous  Next  Index