Home | History | Annotate | Download | only in xml

Lines Matching refs:locator

31 import org.xml.sax.Locator;
53 private final Locator locator = new ExpatLocator();
279 + " '" + this.systemId + "' at " + locator, e);
372 throw new ParseException("No input specified.", locator);
408 throw new ParseException(e.getMessage(), this.locator);
429 throw new ParseException(e.getMessage(), this.locator);
461 throw new ParseException(e.getMessage(), this.locator);
499 throw new ParseException(e.getMessage(), locator);
515 throw new ParseException(e.getMessage(), this.locator);
523 contentHandler.setDocumentLocator(this.locator);
545 throw new ParseException(e.getMessage(), this.locator);
669 private class ExpatLocator implements Locator {
689 return "Locator[publicId: " + publicId + ", systemId: " + systemId
727 private ParseException(String message, Locator locator) {
728 super(makeMessage(message, locator), locator);
731 private static String makeMessage(String message, Locator locator) {
732 return makeMessage(message, locator.getLineNumber(),
733 locator.getColumnNumber());