Package rocket.generator.rebind.codeblock

Examples of rocket.generator.rebind.codeblock.IntLiteral


    Checker.notNull("parameter:parameter", parameter);
    this.parameter = parameter;
  }

  protected CodeBlock getParameterIndex() {
    return new IntLiteral(this.getParameter().getIndex());
  }
View Full Code Here


      if (type == context.getShort()) {
        literal = new ShortLiteral(this.getShortValue());
        break;
      }
      if (type == context.getInt()) {
        literal = new IntLiteral(this.getIntValue());
        break;
      }
      if (type == context.getLong()) {
        literal = new LongLiteral(this.getLongValue());
        break;
View Full Code Here

TOP

Related Classes of rocket.generator.rebind.codeblock.IntLiteral

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.