Package org.eclipse.wst.sse.core.internal.validate

Examples of org.eclipse.wst.sse.core.internal.validate.ValidationMessage


  /**
   */
  public ValidationMessage createMessage(ErrorInfo info) {
    String errorMsg = getErrorMessage(info);
    int errorSeverity = getErrorSeverity(info);
    return new ValidationMessage(errorMsg, info.getOffset(), info.getLength(), errorSeverity);
  }
View Full Code Here


  /**
   */
  public ValidationMessage createMessage(ErrorInfo info) {
    String errorMsg = getErrorMessage(info);
    int errorSeverity = getErrorSeverity(info);
    return new ValidationMessage(errorMsg, info.getOffset(), info.getLength(), errorSeverity);
  }
View Full Code Here

TOP

Related Classes of org.eclipse.wst.sse.core.internal.validate.ValidationMessage

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.