Uses of Class
org.jhotdraw8.css.ast.AbstractAttributeSelector
Packages that use AbstractAttributeSelector
Package
Description
Provides a representation of a parsed style sheet (CSS 3) as an abstract
syntax tree (AST).
-
Uses of AbstractAttributeSelector in org.jhotdraw8.css.ast
Subclasses of AbstractAttributeSelector in org.jhotdraw8.css.astModifier and TypeClassDescriptionclassA "dash match selector"|=matches an element if the element has an attribute with the specified name and its value is either exactly the specified substring or its value begins with the specified substring immediately followed by a dash '-' character.classAn "attribute value selector" matches an element if the element has an attribute with the specified name and value.classAn "exists match" matches an element if the element has an attribute with the specified name.classAn "include match selector"~=matches an element if the element has an attribute with the specified name and the attribute value contains a word list with the specified word.classA "prefix match selector"^=matches an element if the element has an attribute with the specified name and its value starts with the specified substring.classA "substring match selector"*=matches an element if the element has an attribute with the specified name and its value contains the specified substring.classA "suffix match selector"$=matches an element if the element has an attribute with the specified name and its value ends with the specified substring.