Package org.objectstyle.wolips.wodclipse.core.validation

Examples of org.objectstyle.wolips.wodclipse.core.validation.HtmlProblem


    int offset = event.getOffset();
    int length = event.getLength();
    String message = event.getMessage();
    IFile htmlFile = getFile();
    String contents = getContents();
    HtmlProblem problem = new HtmlProblem(htmlFile, message, new Position(offset, length), WodHtmlUtils.getLineAtOffset(contents, offset), false);
    _parserProblems.add(problem);
  }
View Full Code Here

TOP

Related Classes of org.objectstyle.wolips.wodclipse.core.validation.HtmlProblem

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.