| 
 | Préférences Moteurs de recherche | ||||||||||||||||
| JavaTM 2 Platform Std. Ed. v1.5.0 
javax.swing.text
 | |||||||||||||||||
| Method Summary | |
|---|---|
|  AttributeSet | addAttribute(AttributeSet old,
             Object name,
             Object value)Adds an attribute to the given set, and returns the new representative set. | 
|  AttributeSet | addAttributes(AttributeSet old,
              AttributeSet attr)Adds a set of attributes to the element. | 
|  AttributeSet | getEmptySet()Fetches an empty AttributeSet. | 
|  void | reclaim(AttributeSet a)Reclaims an attribute set. | 
|  AttributeSet | removeAttribute(AttributeSet old,
                Object name)Removes an attribute from the set. | 
|  AttributeSet | removeAttributes(AttributeSet old,
                 AttributeSet attrs)Removes a set of attributes for the element. | 
|  AttributeSet | removeAttributes(AttributeSet old,
                 Enumeration<?> names)Removes a set of attributes for the element. | 
| Method Detail | 
|---|
AttributeSet addAttribute(AttributeSet old, Object name, Object value)
old - the old attribute setname - the non-null attribute namevalue - the attribute value
MutableAttributeSet.addAttribute(java.lang.Object, java.lang.Object)AttributeSet addAttributes(AttributeSet old, AttributeSet attr)
old - the old attribute setattr - the attributes to add
MutableAttributeSet.addAttribute(java.lang.Object, java.lang.Object)AttributeSet removeAttribute(AttributeSet old, Object name)
old - the old attribute setname - the non-null attribute name
MutableAttributeSet.removeAttribute(java.lang.Object)AttributeSet removeAttributes(AttributeSet old, Enumeration<?> names)
old - the old attribute setnames - the attribute names
MutableAttributeSet.removeAttributes(java.util.Enumeration>)AttributeSet removeAttributes(AttributeSet old, AttributeSet attrs)
old - the old attribute setattrs - the attributes
MutableAttributeSet.removeAttributes(java.util.Enumeration>)AttributeSet getEmptySet()
void reclaim(AttributeSet a)
a - the attribute set to reclaim