1 16 17 package org.apache.xerces.xni.parser; 18 19 import java.io.IOException ; 20 import org.apache.xerces.xni.XNIException; 21 22 39 public interface XMLDTDScanner 40 extends XMLDTDSource, XMLDTDContentModelSource { 41 42 46 53 public void setInputSource(XMLInputSource inputSource) throws IOException ; 54 55 75 public boolean scanDTDInternalSubset(boolean complete, boolean standalone, 76 boolean hasExternalSubset) 77 throws IOException , XNIException; 78 79 92 public boolean scanDTDExternalSubset(boolean complete) 93 throws IOException , XNIException; 94 95 } | Popular Tags |