Examples of CharacterLiteral


Examples of eu.admire.dispel.literals.CharacterLiteral

   * <!-- end-user-doc -->
   * @generated
   */
  @Override
  public String getText(Object object) {
    CharacterLiteral characterLiteral = (CharacterLiteral)object;
    return getString("_UI_CharacterLiteral_type") + " " + characterLiteral.getValue();
  }
View Full Code Here

Examples of org.datanucleus.store.mapped.expression.CharacterLiteral

        return mappingSampleValue;
    }

    public ScalarExpression newLiteral(QueryExpression qs, Object value)
    {
        return new CharacterLiteral(qs, this, ((Character)value).toString());
    }
View Full Code Here

Examples of org.eclipse.assemblyformatter.ir.lowlevel.CharacterLiteral

      }
    }

    if (section == null) {
      // GENERAL CHARACTER BRANCH
      section = new CharacterLiteral();
      section.setOffset(position);
      section.setLength(1);
    }

    return section;
View Full Code Here

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

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

//      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

Examples of org.jpox.store.mapped.expression.CharacterLiteral

        return mappingSampleValue;
    }

    public ScalarExpression newLiteral(QueryExpression qs, Object value)
    {
        ScalarExpression expr = new CharacterLiteral(qs, this, ((Character)value).toString());
        return expr;
    }
View Full Code Here

Examples of org.jruby.ast.java_signature.CharacterLiteral

        }
  break;
case 144:
          // line 603 "src/org/jruby/parser/JavaSignatureParser.y"
  {
           yyVal = new CharacterLiteral(((String)yyVals[0+yyTop]));
        }
  break;
          // line 1420 "-"
// ACTIONS_END
        }
View Full Code Here

Examples of org.jruby.ast.java_signature.CharacterLiteral

        }
  break;
case 144:
          // line 603 "core/src/main/java/org/jruby/parser/JavaSignatureParser.y"
  {
           yyVal = new CharacterLiteral(((String)yyVals[0+yyTop]));
        }
  break;
          // line 1417 "-"
// ACTIONS_END
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.