Searched refs:Stylesheet (Results 1 - 22 of 22) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DNodeSortRecordFactGenerator.java26 import com.sun.org.apache.xalan.internal.xsltc.compiler.Stylesheet;
37 Stylesheet stylesheet) {
H A DFilterGenerator.java28 import com.sun.org.apache.xalan.internal.xsltc.compiler.Stylesheet;
44 Stylesheet stylesheet) {
H A DNodeCounterGenerator.java28 import com.sun.org.apache.xalan.internal.xsltc.compiler.Stylesheet;
46 Stylesheet stylesheet) {
H A DNodeSortRecordGenerator.java28 import com.sun.org.apache.xalan.internal.xsltc.compiler.Stylesheet;
43 Stylesheet stylesheet) {
H A DClassGenerator.java32 import com.sun.org.apache.xalan.internal.xsltc.compiler.Stylesheet;
54 private Stylesheet _stylesheet;
66 Stylesheet stylesheet) {
99 public final Stylesheet getStylesheet() {
H A DErrorMsg.java31 import com.sun.org.apache.xalan.internal.xsltc.compiler.Stylesheet;
255 Stylesheet stylesheet = node.getStylesheet();
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DInclude.java51 private Stylesheet _included = null;
53 public Stylesheet getIncludedStylesheet() {
59 Stylesheet context = parser.getCurrentStylesheet();
137 final Stylesheet topStylesheet = parser.getTopLevelStylesheet();
H A DSymbolTable.java74 public Stylesheet addStylesheet(QName name, Stylesheet node) {
75 return (Stylesheet)_stylesheets.put(name, node);
78 public Stylesheet lookupStylesheet(QName name) {
79 return (Stylesheet)_stylesheets.get(name);
H A DApplyImports.java70 Stylesheet includeRoot = getStylesheet();
84 Stylesheet stylesheet = getStylesheet();
111 final Stylesheet stylesheet = classGen.getStylesheet();
H A DImport.java50 private Stylesheet _imported = null;
52 public Stylesheet getImportedStylesheet() {
58 final Stylesheet context = parser.getCurrentStylesheet();
137 final Stylesheet topStylesheet = parser.getTopLevelStylesheet();
H A DTemplate.java185 private Stylesheet _stylesheet = null;
187 public Stylesheet getStylesheet() {
246 if (_parent instanceof Stylesheet) {
247 ((Stylesheet)_parent).addTemplate(this);
257 * it will create an empty Stylesheet object with the root element of the
258 * stylesheet (a LiteralElement object) as its only child. The Stylesheet
262 * o) add the LRE root node (the only child of the Stylesheet) as our
264 * o) set the empty Stylesheet as our parent
265 * o) set this template as the Stylesheet's only child
267 public void parseSimplified(Stylesheet styleshee
[all...]
H A DParser.java87 private Stylesheet _currentStylesheet;
227 public void setCurrentStylesheet(Stylesheet stylesheet) {
231 public Stylesheet getCurrentStylesheet() {
235 public Stylesheet getTopLevelStylesheet() {
359 * Create an instance of the <code>Stylesheet</code> class,
363 public Stylesheet makeStylesheet(SyntaxTreeNode element)
366 Stylesheet stylesheet;
368 if (element instanceof Stylesheet) {
369 stylesheet = (Stylesheet)element;
372 stylesheet = new Stylesheet();
[all...]
H A DStylesheet.java21 * $Id: Stylesheet.java,v 1.5 2005/09/28 13:48:16 pvedula Exp $
68 public final class Stylesheet extends SyntaxTreeNode { class in inherits:SyntaxTreeNode
88 private Stylesheet _parentStylesheet;
140 public Stylesheet _importedFrom = null;
146 public Stylesheet _includedFrom = null;
317 Stylesheet parent = getParentStylesheet();
330 Stylesheet included = ((Include)child).getIncludedStylesheet();
372 int prec = ((Stylesheet)_includedStylesheets.elementAt(i))
402 public void setParentStylesheet(Stylesheet parent) {
406 public Stylesheet getParentStyleshee
[all...]
H A DSyntaxTreeNode.java71 private Stylesheet _stylesheet; // Stylesheet ancestor node
357 Stylesheet stylesheet = getStylesheet();
363 * Get the Stylesheet node that represents the <xsl:stylesheet/> element
365 * @return The Stylesheet ancestor node of this node.
367 public Stylesheet getStylesheet() {
371 if (parent instanceof Stylesheet)
372 return((Stylesheet)parent);
375 _stylesheet = (Stylesheet)parent;
634 final Stylesheet styleshee
[all...]
H A DParam.java112 if (parent instanceof Stylesheet) {
138 ((Stylesheet)parent).addParam(this);
H A DVariable.java59 if (parent instanceof Stylesheet) {
85 ((Stylesheet)parent).addVariable(this);
H A DXSLTC.java74 private Stylesheet _stylesheet;
399 // Create a Stylesheet element from the root node
407 // Create AST under the Stylesheet element (parse & type-check)
674 public void setStylesheet(Stylesheet stylesheet) {
681 public Stylesheet getStylesheet() {
H A DApplyTemplates.java118 final Stylesheet stylesheet = classGen.getStylesheet();
H A DCallTemplate.java108 final Stylesheet stylesheet = classGen.getStylesheet();
H A DLiteralElement.java415 return getStylesheet().getOutputMethod() == Stylesheet.HTML_OUTPUT;
H A DMode.java75 private final Stylesheet _stylesheet;
173 * @param stylesheet The Stylesheet in which the mode occured
177 public Mode(QName name, Stylesheet stylesheet, String suffix) {
211 public Stylesheet getStylesheet() {
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DTemplatesHandlerImpl.java36 import com.sun.org.apache.xalan.internal.xsltc.compiler.Stylesheet;
214 Stylesheet stylesheet = null;
219 // Create a Stylesheet element from the root node
239 // Create AST under the Stylesheet element

Completed in 111 milliseconds