Package org.xhtmlrenderer.css.extend
Interface StylesheetFactory
-
- All Known Implementing Classes:
StylesheetFactoryImpl
public interface StylesheetFactory
A Factory class for Cascading Style Sheets. Sheets are parsed using a single parser instance for all sheets. Sheets are cached by URI using a LRU test, but timestamp of file is not checked.- Author:
- Torbjörn Gannholm
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stylesheet
getStylesheet(StylesheetInfo si)
Stylesheet
parse(java.io.Reader reader, StylesheetInfo info)
Ruleset
parseStyleDeclaration(int author, java.lang.String style)
-
-
-
Method Detail
-
parse
Stylesheet parse(java.io.Reader reader, StylesheetInfo info)
-
parseStyleDeclaration
Ruleset parseStyleDeclaration(int author, java.lang.String style)
-
getStylesheet
Stylesheet getStylesheet(StylesheetInfo si)
-
-