1 17 package org.apache.excalibur.xmlizer; 18 19 import java.io.IOException ; 20 import java.io.InputStream ; 21 22 import org.xml.sax.ContentHandler ; 23 import org.xml.sax.SAXException ; 24 25 32 public interface XMLizer 33 { 34 String ROLE = XMLizer.class.getName(); 35 36 46 void toSAX( InputStream stream, 47 String mimeType, 48 String systemID, 49 ContentHandler handler ) 50 throws SAXException , IOException ; 51 } 52 53 | Popular Tags |