Home | History | Annotate | Download | only in transform

Lines Matching refs:locator

31     /** Field locator specifies where the error occurred */
32 SourceLocator locator;
41 return locator;
51 locator = location;
129 this.locator = null;
142 this.locator = null;
162 this.locator = null;
166 * Create a new TransformerException from a message and a Locator.
173 * @param locator The locator object for the error or warning.
175 public TransformerException(String message, SourceLocator locator) {
180 this.locator = locator;
188 * @param locator The locator object for the error or warning.
191 public TransformerException(String message, SourceLocator locator,
197 this.locator = locator;
216 if (null != locator) {
217 String systemID = locator.getSystemId();
218 int line = locator.getLineNumber();
219 int column = locator.getColumnNumber();
248 if (null != locator) {
250 String systemID = locator.getSystemId();
251 int line = locator.getLineNumber();
252 int column = locator.getColumnNumber();