Package org.eclipse.jdt.core.dom

Examples of org.eclipse.jdt.core.dom.CharacterLiteral


     * Add a character literal operand to expression.
     *
     * @param value
     */
    public void addCharacterLiteralOperand(char value) {
        CharacterLiteral literal = m_ast.newCharacterLiteral();
        literal.setCharValue(value);
        addOperand(literal);
    }
View Full Code Here


//      case ASTNode.CAST_EXPRESSION:
//        return "Cast expression";
//      case ASTNode.CATCH_CLAUSE:
//        return "Catch clause";
      case ASTNode.CHARACTER_LITERAL:
        CharacterLiteral characterLiteral = (CharacterLiteral) node;
        return characterLiteral.charValue();
//      case ASTNode.CLASS_INSTANCE_CREATION:
//        return "Class instance creation";
//      case ASTNode.COMPILATION_UNIT:
//        return "Compilation unit";
//      case ASTNode.CONDITIONAL_EXPRESSION:
View Full Code Here

TOP

Related Classes of org.eclipse.jdt.core.dom.CharacterLiteral

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.