1 16 17 package org.apache.cocoon.slop.interfaces; 18 19 import org.xml.sax.ContentHandler ; 20 import org.xml.sax.SAXException ; 21 import org.apache.cocoon.ProcessingException; 22 23 28 29 public interface SlopParser { 30 31 32 public void startDocument(ContentHandler destination) 33 throws SAXException , ProcessingException; 34 35 36 public void endDocument() 37 throws SAXException , ProcessingException; 38 39 40 public void processLine(String line) 41 throws SAXException , ProcessingException; 42 } 43 | Popular Tags |