Uses of Class
org.jhotdraw8.css.ast.SimpleSelector
Packages that use SimpleSelector
Package
Description
Provides a representation of a parsed style sheet (CSS 3) as an abstract
syntax tree (AST).
-
Uses of SimpleSelector in org.jhotdraw8.css.ast
Subclasses of SimpleSelector in org.jhotdraw8.css.astModifier and TypeClassDescriptionclassAn abstract "attribute selector" matches an element based on its attributes.classA "class selector" matches an element if the element has a style class with the specified value.classA "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.classA "class selector" matches an element based on the value of its "pseudo class" attribute.classAn "id selector" matches an element if the element has an id with the specified value.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.classImplements the negation pseudo-class selector.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 "pseudo class selector" matches an element based on criteria which are not directly encoded in the element.classA "select nothing selector" matches nothing.classA "simple class selector" matches an element based on the value of its "pseudo class" attribute.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.classA "type selector" matches an element if the element has a specific type.classA "universal selector" matches an element if the element exists.Fields in org.jhotdraw8.css.ast declared as SimpleSelectorConstructors in org.jhotdraw8.css.ast with parameters of type SimpleSelectorModifierConstructorDescriptionAdjacentSiblingCombinator(@Nullable SourceLocator sourceLocator, SimpleSelector first, Selector second) Creates a new instance.AndCombinator(@Nullable SourceLocator sourceLocator, @NonNull SimpleSelector first, @NonNull Selector second) Creates a new instance.ChildCombinator(@Nullable SourceLocator sourceLocator, @NonNull SimpleSelector first, @NonNull Selector second) Combinator(@Nullable SourceLocator sourceLocator, @NonNull SimpleSelector firstSelector, @NonNull Selector secondSelector) DescendantCombinator(@Nullable SourceLocator sourceLocator, SimpleSelector first, Selector second) GeneralSiblingCombinator(@Nullable SourceLocator sourceLocator, @NonNull SimpleSelector first, @NonNull Selector second) NegationPseudoClassSelector(@Nullable SourceLocator sourceLocator, @NonNull String functionIdentifier, @NonNull SimpleSelector selector)