Home | History | Annotate | Download | only in processor

Lines Matching defs:stylesheet

26 import org.apache.xalan.templates.Stylesheet;
33 * TransformerFactory for xsl:stylesheet or xsl:transform markup.
35 * @see <a href="http://www.w3.org/TR/xslt#stylesheet-element">stylesheet-element in XSLT Specification</a>
68 Stylesheet stylesheet;
74 stylesheet = getStylesheetRoot(handler);
83 Stylesheet parent = handler.getStylesheet();
91 stylesheet = sc;
95 stylesheet = new Stylesheet(parent);
97 parent.setInclude(stylesheet);
101 stylesheet.setDOMBackPointer(handler.getOriginatingNode());
102 stylesheet.setLocaterInfo(handler.getLocator());
104 stylesheet.setPrefixes(handler.getNamespaceSupport());
105 handler.pushStylesheet(stylesheet);
120 protected Stylesheet getStylesheetRoot(StylesheetHandler handler) throws TransformerConfigurationException
122 StylesheetRoot stylesheet;
123 stylesheet = new StylesheetRoot(handler.getSchema(), handler.getStylesheetProcessor().getErrorListener());
126 stylesheet.setSecureProcessing(true);
128 return stylesheet;