| java.lang.Object org.wings.style.CSSAttributeSet
All known Subclasses: org.wings.style.CSSStyle,
EMPTY_ATTRIBUTESET | final public static CSSAttributeSet EMPTY_ATTRIBUTESET(Code) | | Empty immutable attribute set.
|
CSSAttributeSet | public CSSAttributeSet()(Code) | | Creates a new, empty atribute set.
|
CSSAttributeSet | public CSSAttributeSet(CSSAttributeSet source)(Code) | | Creates a new attribute set based on a supplied set of attributes.
Parameters: source - the set of attributes |
clear | final public void clear()(Code) | | |
clone | public Object clone()(Code) | | Clones a set of attributes.
the new set of attributes |
contains | final public boolean contains(CSSProperty name)(Code) | | Tells whether a given attribute is defined.
Parameters: name - the attribute name true if the attribute is defined |
get | final public String get(CSSProperty property)(Code) | | Gets the value of an css property.
Parameters: property - the attribute property the value |
hashCode | public int hashCode()(Code) | | |
isEmpty | final public boolean isEmpty()(Code) | | Checks whether the set of attributes is empty.
true if the set is empty else false |
put | public String put(CSSProperty name, String value)(Code) | | Adds an attribute to the list.
Parameters: name - the attribute name Parameters: value - the attribute value |
putAll | public boolean putAll(CSSAttributeSet attributes)(Code) | | Adds a set of attributes to the list.
Parameters: attributes - the set of attributes to add |
remove | public String remove(CSSProperty name)(Code) | | Removes an attribute from the list.
Parameters: name - the attribute name The previous value for this CSS property |
size | final public int size()(Code) | | Gets a count of the number of attributes.
the count |
toString | public String toString()(Code) | | Converts the attribute set to a String.
the string |
|
|