Home | History | Annotate | Download | only in sax

Lines Matching defs:locator

19  * in the original XML document, as if it came from a {@link Locator}
34 * @see org.xml.sax.Locator
47 * Create a new SAXParseException from a message and a Locator.
54 * @param locator The locator object for the error or warning (may be
56 * @see org.xml.sax.Locator
58 public SAXParseException (String message, Locator locator) {
60 if (locator != null) {
61 init(locator.getPublicId(), locator.getSystemId(),
62 locator.getLineNumber(), locator.getColumnNumber());
79 * @param locator The locator object for the error or warning (may be
82 * @see org.xml.sax.Locator
84 public SAXParseException (String message, Locator locator,
87 if (locator != null) {
88 init(locator.getPublicId(), locator.getSystemId(),
89 locator.getLineNumber(), locator.getColumnNumber());
102 * they were provided by a {@link Locator}. For example, if the
133 * they were provided by a {@link Locator}. For example, if the
182 * @see org.xml.sax.Locator#getPublicId
198 * @see org.xml.sax.Locator#getSystemId
213 * @see org.xml.sax.Locator#getLineNumber
228 * @see org.xml.sax.Locator#getColumnNumber