Package org.apache.imperius.spl.parser.expressions.impl

Examples of org.apache.imperius.spl.parser.expressions.impl.UnaryPlusExpression


    case SPLTreeParserTokenTypes.UNARY_MINUS:
      returnExpr = new UnaryMinusExpression(exprList, validateExpr);
      break;

    case SPLTreeParserTokenTypes.UNARY_PLUS:
      returnExpr = new UnaryPlusExpression(exprList, validateExpr);
      break;

    case SPLTreeParserTokenTypes.UNARY_NOT:
      //Xiping 06/12/08
      //returnExpr = new UnaryNotExpression(exprList, validateExpr);
View Full Code Here

TOP

Related Classes of org.apache.imperius.spl.parser.expressions.impl.UnaryPlusExpression

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.