Package com.day.cq.rewriter.pipeline
Interface Generator
-
- All Known Implementing Classes:
HtmlParser
@Deprecated public interface Generator
Deprecated.Use the Apache Sling Rewriter Module (org.apache.sling.rewriter.Generator)TheGeneratorinterface defines the start of a rewriter pipeline.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidfinished()Deprecated.Notify the generator that parsing is finished.PrintWritergetWriter()Deprecated.Get the writer to write the output to.voidinit(ProcessingContext context, ProcessingComponentConfiguration config)Deprecated.Initialize this component.voidsetContentHandler(ContentHandler handler)Deprecated.Set the content handler the generator should stream to.
-
-
-
Method Detail
-
init
void init(ProcessingContext context, ProcessingComponentConfiguration config) throws IOException
Deprecated.Initialize this component.- Parameters:
context- The invocation context.config- The configuration for this component.- Throws:
IOException-IOException
-
setContentHandler
void setContentHandler(ContentHandler handler)
Deprecated.Set the content handler the generator should stream to.- Parameters:
handler- A transformer or serializer.
-
getWriter
PrintWriter getWriter()
Deprecated.Get the writer to write the output to.- Returns:
- A print writer.
-
finished
void finished() throws IOException, SAXExceptionDeprecated.Notify the generator that parsing is finished.- Throws:
IOException-IOExceptionSAXException-SAXException
-
-