|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Rewriter
Method Summary | |
void |
enterConvertTagEvent(String tag,
MutableAttributes attrs)
Rewriter event called back just before tag conversion (rewriter callbacks) begins by the ParserAdaptor. |
boolean |
enterEndTagEvent(String tag)
Rewriter event called back on the leading edge of processing an end tag by the ParserAdaptor. |
boolean |
enterSimpleTagEvent(String tag,
MutableAttributes attrs)
Rewriter event called back on the leading edge of processing a simple tag by the ParserAdaptor. |
boolean |
enterStartTagEvent(String tag,
MutableAttributes attrs)
Rewriter event called back on the leading edge of processing a start tag by the ParserAdaptor. |
boolean |
enterText(char[] values,
int param)
Rewriter event called back when text is found for Returns false to indicate to the ParserAdaptor to short-circuit processing on this tag. |
String |
exitEndTagEvent(String tag)
Rewriter event called back on the trailing edge of a end tag by the ParserAdaptor. |
String |
exitSimpleTagEvent(String tag,
MutableAttributes attrs)
Rewriter event called back on the trailing edge of a simple tag by the ParserAdaptor. |
String |
exitStartTagEvent(String tag,
MutableAttributes attrs)
Rewriter event called back on the trailing edge of a start tag by the ParserAdaptor. |
String |
getBaseUrl()
Gets the base URL for rewriting. |
boolean |
getUseProxy()
Gets whether this rewriter require a proxy server. |
void |
parse(ParserAdaptor adaptor,
Reader reader)
Parses the reader of content receiving call backs for rewriter events. |
void |
rewrite(ParserAdaptor adaptor,
Reader reader,
Writer writer)
Parses the reader of content receiving call backs for rewriter events. |
String |
rewriteUrl(String url,
String tag,
String attribute)
This event is the inteface between the Rewriter and ParserAdaptor for rewriting URLs. |
void |
setBaseUrl(String base)
Sets the base URL for rewriting. |
void |
setUseProxy(boolean useProxy)
Set whether this rewriter require a proxy server. |
boolean |
shouldRemoveComments()
Returns true if all comments should be removed. |
boolean |
shouldRemoveTag(String tag)
Returns true if the tag should be removed, otherwise false. |
boolean |
shouldStripTag(String tag)
Returns true if the tag should be stripped, otherwise false. |
Method Detail |
public void parse(ParserAdaptor adaptor, Reader reader) throws RewriterException
adaptor
- the parser adaptor which handles generating SAX-like events called back on this object.reader
- the input stream over the content to be parsed.
RewriteException
- when a parsing error occurs or unexpected content is found.
RewriterException
public void rewrite(ParserAdaptor adaptor, Reader reader, Writer writer) throws RewriterException
adaptor
- the parser adaptor which handles generating SAX-like events called back on this object.reader
- the input stream over the content to be parsed.writer
- the output stream where content is rewritten to.
RewriteException
- when a parsing error occurs or unexpected content is found.
RewriterException
public String rewriteUrl(String url, String tag, String attribute)
url
- the URL to be rewrittentag
- The tag being processedattribute
- The current attribute being processsedpublic boolean shouldRemoveTag(String tag)
public boolean shouldStripTag(String tag)
public boolean shouldRemoveComments()
public void setBaseUrl(String base)
base
- The base URL for this rewriterpublic String getBaseUrl()
public boolean getUseProxy()
public void setUseProxy(boolean useProxy)
useProxy
- true if it requires a proxypublic boolean enterSimpleTagEvent(String tag, MutableAttributes attrs)
tag
- The name of the tag being processed.attrs
- The attribute list for the tag.
public String exitSimpleTagEvent(String tag, MutableAttributes attrs)
tag
- The name of the tag being processed.attrs
- The attribute list for the tag.
public boolean enterStartTagEvent(String tag, MutableAttributes attrs)
tag
- The name of the tag being processed.attrs
- The attribute list for the tag.
public String exitStartTagEvent(String tag, MutableAttributes attrs)
tag
- The name of the tag being processed.attrs
- The attribute list for the tag.
public boolean enterEndTagEvent(String tag)
tag
- The name of the tag being processed.
public String exitEndTagEvent(String tag)
tag
- The name of the tag being processed.
public boolean enterText(char[] values, int param)
values
- an array of characters containing the text.param
-
public void enterConvertTagEvent(String tag, MutableAttributes attrs)
tag
- The name of the tag being processed.attrs
- The attribute list for the tag.
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |