Package org.springsource.ide.eclipse.commons.livexp.core

Examples of org.springsource.ide.eclipse.commons.livexp.core.Validator


   * build type is supported.
   */
  private void addBuildTypeValidator() {
    RadioGroup buildTypeGroup = getRadioGroups().getGroup("type");
    if (buildTypeGroup!=null) {
      buildTypeGroup.validator(new Validator() {
        @Override
        protected ValidationResult compute() {
          BuildType bt = getBuildType();
          if (!bt.getImportStrategy().isSupported()) {
            //This means some required STS component like m2e or gradle tooling is not installed
View Full Code Here

TOP

Related Classes of org.springsource.ide.eclipse.commons.livexp.core.Validator

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.