Package com.day.cq.rewriter.pipeline
Interface Generator
-
- All Known Implementing Classes:
HtmlParser
@Deprecated public interface GeneratorDeprecated.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.java.io.PrintWritergetWriter()Deprecated.Get the writer to write the output to.voidinit(ProcessingContext context, ProcessingComponentConfiguration config)Deprecated.Initialize this component.voidsetContentHandler(org.xml.sax.ContentHandler handler)Deprecated.Set the content handler the generator should stream to.
-
-
-
Method Detail
-
init
void init(ProcessingContext context, ProcessingComponentConfiguration config) throws java.io.IOException
Deprecated.Initialize this component.- Parameters:
context- The invocation context.config- The configuration for this component.- Throws:
java.io.IOException-IOException
-
setContentHandler
void setContentHandler(org.xml.sax.ContentHandler handler)
Deprecated.Set the content handler the generator should stream to.- Parameters:
handler- A transformer or serializer.
-
getWriter
java.io.PrintWriter getWriter()
Deprecated.Get the writer to write the output to.- Returns:
- A print writer.
-
finished
void finished() throws java.io.IOException, org.xml.sax.SAXExceptionDeprecated.Notify the generator that parsing is finished.- Throws:
java.io.IOException-IOExceptionorg.xml.sax.SAXException-SAXException
-
-