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)TheGenerator
interface defines the start of a rewriter pipeline.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
finished()
Deprecated.Notify the generator that parsing is finished.PrintWriter
getWriter()
Deprecated.Get the writer to write the output to.void
init(ProcessingContext context, ProcessingComponentConfiguration config)
Deprecated.Initialize this component.void
setContentHandler(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, SAXException
Deprecated.Notify the generator that parsing is finished.- Throws:
IOException
-IOException
SAXException
-SAXException
-
-