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

    Modifier and Type
    Class
    Description
    class 
    A "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.
    class 
    An "attribute value selector" matches an element if the element has an attribute with the specified name and value.
    class 
    An "exists match" matches an element if the element has an attribute with the specified name.
    class 
    An "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.
    class 
    A "prefix match selector" ^= matches an element if the element has an attribute with the specified name and its value starts with the specified substring.
    class 
    A "substring match selector" *= matches an element if the element has an attribute with the specified name and its value contains the specified substring.
    class 
    A "suffix match selector" $= matches an element if the element has an attribute with the specified name and its value ends with the specified substring.