Interface CssParserEventHandler.ExpressionHandler

  • Enclosing interface:
    CssParserEventHandler

    public static interface CssParserEventHandler.ExpressionHandler
    Builds an expression.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void onColor​(com.google.common.css.compiler.ast.ParserToken color)  
      void onFunction​(com.google.common.css.compiler.ast.ParserToken constant)  
      void onFunctionArgument​(com.google.common.css.compiler.ast.ParserToken term)  
      void onLiteral​(com.google.common.css.compiler.ast.ParserToken expression)  
      void onNumericValue​(com.google.common.css.compiler.ast.ParserToken numericValue, com.google.common.css.compiler.ast.ParserToken unit)  
      void onOperator​(com.google.common.css.compiler.ast.ParserToken expression)  
      void onPriority​(com.google.common.css.compiler.ast.ParserToken priority)  
      void onReference​(com.google.common.css.compiler.ast.ParserToken reference)  
      void onReferenceFunctionArgument​(com.google.common.css.compiler.ast.ParserToken term)  
    • Method Detail

      • onLiteral

        void onLiteral​(com.google.common.css.compiler.ast.ParserToken expression)
      • onOperator

        void onOperator​(com.google.common.css.compiler.ast.ParserToken expression)
      • onPriority

        void onPriority​(com.google.common.css.compiler.ast.ParserToken priority)
      • onColor

        void onColor​(com.google.common.css.compiler.ast.ParserToken color)
      • onNumericValue

        void onNumericValue​(com.google.common.css.compiler.ast.ParserToken numericValue,
                            com.google.common.css.compiler.ast.ParserToken unit)
      • onReference

        void onReference​(com.google.common.css.compiler.ast.ParserToken reference)
      • onFunction

        void onFunction​(com.google.common.css.compiler.ast.ParserToken constant)
      • onFunctionArgument

        void onFunctionArgument​(com.google.common.css.compiler.ast.ParserToken term)
      • onReferenceFunctionArgument

        void onReferenceFunctionArgument​(com.google.common.css.compiler.ast.ParserToken term)