1 57 58 package com.sun.org.apache.xerces.internal.xni.parser; 59 60 import java.io.IOException ; 61 import com.sun.org.apache.xerces.internal.xni.XNIException; 62 63 80 public interface XMLDTDScanner 81 extends XMLDTDSource, XMLDTDContentModelSource { 82 83 87 94 public void setInputSource(XMLInputSource inputSource) throws IOException ; 95 96 116 public boolean scanDTDInternalSubset(boolean complete, boolean standalone, 117 boolean hasExternalSubset) 118 throws IOException , XNIException; 119 120 133 public boolean scanDTDExternalSubset(boolean complete) 134 throws IOException , XNIException; 135 136 } | Popular Tags |