Uses of Class
org.jhotdraw8.css.ast.Combinator

Packages that use Combinator
Package
Description
Provides a representation of a parsed style sheet (CSS 3) as an abstract syntax tree (AST).
  • Uses of Combinator in org.jhotdraw8.css.ast

    Modifier and Type
    Class
    Description
    class 
    An "adjacent sibling combinator" matches an element if its first selector matches on the adjacent sibling of the element and if its second selector matches the element.
    class 
    An "and combinator" matches an element if both its first selector and its second selector match the element.
    class 
    A "child combinator" matches an element if its first selector matches on the parent of the element and if its second selector matches on the element itself.
    class 
    A "descendant combinator" matches an element if its first selector matches on an ancestor of the element and if its second selector matches on the element itself.
    class 
    An "general sibling combinator" matches an element if its first selector matches the sibling of the element and if its second selector matches the element.