com.opensymphony.module.sitemesh.parser
public final class: FastPageParser [javadoc |
source]
java.lang.Object
com.opensymphony.module.sitemesh.parser.FastPageParser
All Implemented Interfaces:
PageParser
Deprecated! Use - HTMLPageParser instead - it performs better and is more extensible.
Very fast PageParser implementation for parsing HTML.
Produces FastPage.
- author:
< - a href="mailto:salaman@qoretech.com">Victor Salaman
- version:
$ - Revision: 1.13 $
| Method from com.opensymphony.module.sitemesh.parser.FastPageParser Summary: |
|---|
|
parse, parse |
| Method from com.opensymphony.module.sitemesh.parser.FastPageParser Detail: |
public Page parse(char[] data) throws IOException {
// "content".hashCode();
FastPage page = internalParse(new CharArrayReader(data));
page.setVerbatimPage(data);
return page;
} Deprecated! |
public Page parse(Reader reader) {
return internalParse(reader);
} Deprecated! |