Examples of StrutsConstant


Examples of com.intellij.struts2.model.constant.StrutsConstant

        .findClass(getRequiredPluginClassName(),
                   GlobalSearchScope.moduleWithDependenciesAndLibrariesScope(module, false)) != null;
  }

  protected static StrutsConstant addBooleanProperty(@NonNls final String propertyName) {
    return new StrutsConstant(propertyName, BOOLEAN_CONVERTER);
  }
View Full Code Here

Examples of com.intellij.struts2.model.constant.StrutsConstant

  protected static StrutsConstant addBooleanProperty(@NonNls final String propertyName) {
    return new StrutsConstant(propertyName, BOOLEAN_CONVERTER);
  }

  protected static StrutsConstant addIntegerProperty(@NonNls final String propertyName) {
    return new StrutsConstant(propertyName, INTEGER_CONVERTER);
  }
View Full Code Here

Examples of com.intellij.struts2.model.constant.StrutsConstant

  protected static StrutsConstant addIntegerProperty(@NonNls final String propertyName) {
    return new StrutsConstant(propertyName, INTEGER_CONVERTER);
  }

  protected static StrutsConstant addStringProperty(@NonNls final String propertyName) {
    return new StrutsConstant(propertyName, null);
  }
View Full Code Here

Examples of com.intellij.struts2.model.constant.StrutsConstant

    return new StrutsConstant(propertyName, null);
  }

  protected static StrutsConstant addStringValuesProperty(@NonNls final String propertyName,
                                                          @NonNls final String... values) {
    return new StrutsConstant(propertyName, new StringValuesConverter(values));
  }
View Full Code Here

Examples of com.intellij.struts2.model.constant.StrutsConstant

                                                          @NonNls final String... values) {
    return new StrutsConstant(propertyName, new StringValuesConverter(values));
  }

  protected static StrutsConstant addDelimitedStringValuesProperty(@NonNls final String propertyName) {
    return new StrutsConstant(propertyName, new DelimitedStringValuesConverter());
  }
View Full Code Here

Examples of com.intellij.struts2.model.constant.StrutsConstant

    @NonNls final Map<String, String> shortCutToPsiClassMap = new HashMap<String, String>();
    for (final Pair<String, String> shortcut : shortcuts) {
      shortCutToPsiClassMap.put(shortcut.first, shortcut.second);
    }

    return new StrutsConstant(propertyName, new ConstantValueClassConverter(baseClass, shortCutToPsiClassMap));
  }
View Full Code Here

Examples of com.intellij.struts2.model.constant.StrutsConstant

    return new StrutsConstant(propertyName, new ConstantValueClassConverter(baseClass, shortCutToPsiClassMap));
  }

  protected static StrutsConstant addStrutsPackage(@NonNls final String propertyName) {
    return new StrutsConstant(propertyName, new StrutsPackageConverter());
  }
View Full Code Here

Examples of com.intellij.struts2.model.constant.StrutsConstant

  protected static StrutsConstant addStrutsPackage(@NonNls final String propertyName) {
    return new StrutsConstant(propertyName, new StrutsPackageConverter());
  }

  protected static StrutsConstant addResultTypeProperty(@NonNls final String propertyName) {
    return new StrutsConstant(propertyName, new ResultTypeConverter());
  }
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.