Package org.eclipse.wst.xml.core.internal.document

Examples of org.eclipse.wst.xml.core.internal.document.SourceValidator


    }
  }

  private int validateTextSource(IDOMNode text) {
    try {
      SourceValidator validator = new SourceValidator(text);
      validator.validateSource(text.getSource());
    }
    catch (InvalidCharacterException ex) {
      return ex.getOffset();
    }
    return -1;
View Full Code Here


    }
  }

  private int validateTextSource(IDOMNode text) {
    try {
      SourceValidator validator = new SourceValidator(text);
      validator.validateSource(text.getSource());
    }
    catch (InvalidCharacterException ex) {
      return ex.getOffset();
    }
    return -1;
View Full Code Here

TOP

Related Classes of org.eclipse.wst.xml.core.internal.document.SourceValidator

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.