Home | History | Annotate | Download | only in processor

Lines Matching refs:Stylesheet

39 import org.apache.xalan.templates.Stylesheet;
60 * Initializes and processes a stylesheet via SAX events.
92 * Create a StylesheetHandler object, creating a root stylesheet
255 * @return The stylesheet object that was created during
256 * the SAX event process, or null if no stylesheet has
269 * Set the base ID (URL or system ID) for the stylesheet
271 * resolve relative URLs in the stylesheet.
273 * @param baseID Base URL for this stylesheet.
363 * found position in the stylesheet.
388 error(XSLMessages.createMessage(XSLTErrorResources.ER_NOT_ALLOWED_IN_POSITION, new Object[]{rawName}),null);//rawName + " is not allowed in this position in the stylesheet!",
401 * stylesheet being parsed. The stack needs to be popped
402 * after the stylesheet has been parsed. We pop in
417 * The level of the stylesheet we are at.
435 /** m_parsingComplete becomes true when the top-level stylesheet and all
443 * This is needed as guidance for stylesheet optimization
448 * @return true iff the complete stylesheet tree has been built.
474 stylesheet root!");
592 // limiting this check to xsl:stylesheet elements only since that is all it really
701 XSLMessages.createMessage(XSLTErrorResources.ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION, null),null);//"Non-whitespace text is not allowed in this position in the stylesheet!",
1118 * If getStylesheetType returns this value, the current stylesheet
1119 * is a root stylesheet.
1125 * If getStylesheetType returns this value, the current stylesheet
1126 * is an included stylesheet.
1132 * If getStylesheetType returns this value, the current stylesheet
1133 * is an imported stylesheet.
1138 /** The current stylesheet type. */
1142 * Get the type of stylesheet that should be built
1153 * Set the type of stylesheet that should be built
1169 * Return the stylesheet that this handler is constructing.
1171 * @return The current stylesheet that is on top of the stylesheets stack,
1172 * or null if no stylesheet is on the stylesheets stack.
1174 Stylesheet getStylesheet()
1177 ? null : (Stylesheet) m_stylesheets.peek();
1181 * Return the last stylesheet that was popped off the stylesheets stack.
1183 * @return The last popped stylesheet, or null.
1185 Stylesheet getLastPoppedStylesheet()
1191 * Return the stylesheet root that this handler is constructing.
1193 * @return The root stylesheet of the stylesheets tree.
1205 /** The root stylesheet of the stylesheets tree. */
1208 /** The last stylesheet that was popped off the stylesheets stack. */
1209 Stylesheet m_lastPoppedStylesheet;
1212 * Push the current stylesheet being constructed. If no other stylesheets
1213 * have been pushed onto the stack, assume the argument is a stylesheet
1214 * root, and also set the stylesheet root member.
1216 * @param s non-null reference to a stylesheet.
1218 public void pushStylesheet(Stylesheet s)
1228 * Pop the last stylesheet pushed, and return the stylesheet that this
1229 * handler is constructing, and set the last popped stylesheet member.
1230 * Also pop the stylesheet locator stack.
1232 * @return The stylesheet popped off the stack, or the last popped stylesheet.
1234 Stylesheet popStylesheet()
1238 // a locator was pushed in for this stylesheet by the SAXparser by calling
1244 m_lastPoppedStylesheet = (Stylesheet) m_stylesheets.pop();
1375 * stylesheet, which may be a fragment identifier, or which may be null.
1412 * @return The base identifier of the current stylesheet.
1423 // Otherwise try the stylesheet.
1436 * stylesheet SAX locator object.
1441 * Get the current stylesheet Locator object.
1476 * Push an import href onto the stylesheet stack.
1479 * stylesheet.
1487 * Push the Source of an import href onto the stylesheet stack,
1497 * See if the imported stylesheet stack already contains
1510 * Pop an import href from the stylesheet stack.
1576 * The originating node if the current stylesheet is being created