Home | History | Annotate | Download | only in processor

Lines Matching refs:locator

55 import org.xml.sax.Locator;
399 * Receive a Locator object for document events.
400 * This is called by the parser to push a locator for the
405 * @param locator A locator for all SAX document events.
407 * @see org.xml.sax.Locator
409 public void setDocumentLocator(Locator locator)
412 // System.out.println("pushing locator for: "+locator.getSystemId());
413 m_stylesheetLocatorStack.push(new SAXSourceLocator(locator));
855 SAXSourceLocator locator = getLocator();
861 handler.warning(new TransformerException(formattedMsg, locator));
901 SAXSourceLocator locator = getLocator();
908 ? new TransformerException(msg, locator)
909 : new TransformerException(msg, locator, e);
968 SAXSourceLocator locator = getLocator();
973 handler.warning(new TransformerException(formattedMsg, locator));
996 SAXSourceLocator locator = getLocator();
1001 handler.error(new TransformerException(formattedMsg, locator));
1024 SAXSourceLocator locator = getLocator();
1029 handler.fatalError(new TransformerException(formattedMsg, locator));
1230 * Also pop the stylesheet locator stack.
1238 // a locator was pushed in for this stylesheet by the SAXparser by calling
1426 SourceLocator locator = getLocator();
1428 base = (null == locator) ? "" : locator.getSystemId();
1436 * stylesheet SAX locator object.
1441 * Get the current stylesheet Locator object.
1443 * @return non-null reference to the current locator object.
1450 SAXSourceLocator locator = new SAXSourceLocator();
1452 locator.setSystemId(this.getStylesheetProcessor().getDOMsystemID());
1454 return locator;
1456 // m_stylesheetLocatorStack.push(locator);
1664 SAXSourceLocator locator = getLocator();
1669 handler.error(new TransformerException(XSLMessages.createMessage(XSLTErrorResources.ER_ILLEGAL_XMLSPACE_VALUE, null), locator)); //"Illegal value for xml:space", locator));
1673 throw new org.xml.sax.SAXParseException(te.getMessage(), locator, te);