Package rocket.generator.rebind.codeblock

Examples of rocket.generator.rebind.codeblock.StringLiteral


      if (Constants.SERIALIZER.equals(name)) {
        value = this.getSerializer();
        break;
      }
      if (Constants.JAVASCRIPT_PROPERTY_NAME.equals(name)) {
        value = new StringLiteral(this.getJavascriptPropertyName());
        break;
      }
      break;
    }
    return value;
View Full Code Here


      if (Constants.SERVICE_METHOD_INVOKER_SERIALIZATION_FACTORY_COMPOSER.equals(name)) {
        value = this.getSerializationFactoryComposer();
        break;
      }
      if (Constants.SERVICE_METHOD_INVOKER_INTERFACE_TYPENAME.equals(name)) {
        value = new StringLiteral(this.getServiceInterface().getName());
        break;
      }
      if (Constants.SERVICE_METHOD_INVOKER_METHOD_NAME.equals(name)) {
        value = new StringLiteral(this.getMethod().getName());
        break;
      }
      if (Constants.SERVICE_METHOD_INVOKER_ADD_PARAMETER_TYPENAMES.equals(name)) {
        value = this.getAddParameterTypeNames();
        break;
View Full Code Here

  @Override
  protected Object getValue0(final String name) {
    Object value = null;

    if (Constants.ID.equals(name)) {
      value = new StringLiteral(this.getId());
    }
    return value;
  }
View Full Code Here

TOP

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

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.