Home | History | Annotate | Download | only in dtm

Lines Matching defs:locator

40     /** Field locator specifies where the error occured.
42 SourceLocator locator;
51 return locator;
61 locator = location;
140 this.locator = null;
153 this.locator = null;
173 this.locator = null;
177 * Create a new DTMException from a message and a Locator.
184 * @param locator The locator object for the error or warning.
186 public DTMException(String message, SourceLocator locator) {
191 this.locator = locator;
199 * @param locator The locator object for the error or warning.
202 public DTMException(String message, SourceLocator locator,
208 this.locator = locator;
224 if (null != locator) {
225 String systemID = locator.getSystemId();
226 int line = locator.getLineNumber();
227 int column = locator.getColumnNumber();
256 if (null != locator) {
258 String systemID = locator.getSystemId();
259 int line = locator.getLineNumber();
260 int column = locator.getColumnNumber();