Home | History | Annotate | Download | only in templates

Lines Matching refs:Stylesheet

28  * Represents a stylesheet that has methods that resolve includes and
38 * <li>Properties in that are not atomic on a stylesheet will
46 public class StylesheetComposed extends Stylesheet
51 * Uses an XSL stylesheet document.
52 * @param parent The including or importing stylesheet.
54 public StylesheetComposed(Stylesheet parent)
81 //recomposeIncludes(this); // Build the global include list for this stylesheet.
89 Stylesheet included = getIncludeComposed(i);
167 /** The precedence of this stylesheet in the global import list.
168 * The lowest precedence stylesheet is 0. A higher
174 /* The count of imports composed for this stylesheet */
178 * Recalculate the precedence of this stylesheet in the global
179 * import list. The lowest precedence stylesheet is 0. A higher
192 // Now get the count of composed imports from this stylesheet's imports
201 // Now get the count of composed imports from this stylesheet's
215 * Get a stylesheet from the "import" list.
218 * @param i Index of stylesheet in import list
220 * @return The stylesheet at the given index
230 // Get the stylesheet that is offset past this stylesheet.
231 // Thus, if the index of this stylesheet is 3, an argument
232 // to getImportComposed of 0 will return the 4th stylesheet
238 * Get the precedence of this stylesheet in the global import list.
242 * @return the precedence of this stylesheet in the global import list.
250 * Get the number of import in this stylesheet's composed list.
252 * @return the number of imports in this stylesheet's composed list.
268 * list of all stylesheets included by this stylesheet to any depth.
270 * @param including Stylesheet to recompose
272 void recomposeIncludes(Stylesheet including)
284 Stylesheet included = including.getInclude(i);
295 * @param i Index of stylesheet in "include" list
297 * @return The stylesheet at the given index in the "include" list
301 public Stylesheet getIncludeComposed(int i)
311 return (Stylesheet) m_includesComposed.elementAt(i);