Example usage for Java javax.swing.text SimpleAttributeSet fields, constructors, methods, implement or subclass
The text is from its open source code.
AttributeSet | EMPTY An empty attribute set. |
SimpleAttributeSet() Creates a new attribute set. | |
SimpleAttributeSet(AttributeSet source) Creates a new attribute set based on a supplied set of attributes. |
void | addAttribute(Object name, Object value) Adds an attribute to the list. |
Object | getAttribute(Object name) Gets the value of an attribute. |
int | getAttributeCount() Gets a count of the number of attributes. |
Enumeration> | getAttributeNames() Gets the names of the attributes in the set. |