Class CssCombinatorNode

java.lang.Object
com.google.common.css.compiler.ast.CssNode
com.google.common.css.compiler.ast.CssCombinatorNode
All Implemented Interfaces:
Locatable

public class CssCombinatorNode extends CssNode
A node representing a combinator of selectors in the AST.
  • Constructor Details

  • Method Details

    • deepCopy

      public CssCombinatorNode deepCopy()
      Specified by:
      deepCopy in class CssNode
    • getSelector

      public CssSelectorNode getSelector()
    • setSelector

      public void setSelector(CssSelectorNode selector)
    • getCombinatorType

      public CssCombinatorNode.Combinator getCombinatorType()
    • toString

      public String toString()
      Description copied from class: CssNode
      This is the default implementation of toString().

      Overriding this method should only be done for debugging or logging purposes, not for the actual functionality of the compiler. If a string representation of a tree is needed, define a Visitor that builds the desired representation.

      Overrides:
      toString in class CssNode
      See Also: