Examples of validateAndMark()


Examples of de.innovationgate.eclipse.editors.helpers.TMLTagValidator.validateAndMark()

      String validatorClassName = validators.next();
      TMLTagValidator validator = _allValidators.get(validatorClassName);
      if (validator != null) {
        try {
          validator.setVersionCompliance(versionCompliance);
          validator.validateAndMark(file, document, partition, tmlInfo, tag);
        } catch (Exception e) {
          Plugin.getDefault().getLog().log(new Status(Status.ERROR, Plugin.PLUGIN_ID, "Execution of tag validator '" + validatorClassName + "' failed.", e));
        }
      }       
    } 
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.