Generator.java
632 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.day.cq.rewriter.pipeline;
import com.day.cq.rewriter.processor.ProcessingComponentConfiguration;
import com.day.cq.rewriter.processor.ProcessingContext;
import java.io.IOException;
import java.io.PrintWriter;
import org.xml.sax.ContentHandler;
import org.xml.sax.SAXException;
@Deprecated
public interface Generator {
public void init(ProcessingContext var1, ProcessingComponentConfiguration var2) throws IOException;
public void setContentHandler(ContentHandler var1);
public PrintWriter getWriter();
public void finished() throws IOException, SAXException;
}