| com.sun.portal.rewriter.Rewriter
All known Subclasses: com.sun.portal.rewriter.engines.AbstractRewriter,
Rewriter | public interface Rewriter (Code) | | Heart of the Rewriter component, all the specific language handlers
(HTML,JS,CSS,XML) would provide implementation for this interface.
version: 1.0 12/15/2001 author: Raja Nagendra Kumar, Nagendra.Raja@sun.com |
Method Summary | |
public Reader | rewrite(Reader aReader, Translator aTranslator) It is advised to pass the content as Reader, which would allow the Rewriter
to do translation of huge amount of content, as and when it reades the data
from the stream (Incremental or chunked rewritting). | public String | rewrite(String aContent, Translator aTranslator) |
rewrite | public Reader rewrite(Reader aReader, Translator aTranslator)(Code) | | It is advised to pass the content as Reader, which would allow the Rewriter
to do translation of huge amount of content, as and when it reades the data
from the stream (Incremental or chunked rewritting).
|
|
|