⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 opaquefilter.java

📁 随书的代码
💻 JAVA
字号:
import org.xml.sax.*;public class OpaqueFilter implements XMLFilter {  private XMLReader parent;    public void setParent(XMLReader parent) {    this.parent = parent;  }    public XMLReader getParent() {    return this.parent;   }  public boolean getFeature(String name)   throws SAXNotRecognizedException {    throw new SAXNotRecognizedException(name);  }   public void setFeature(String name, boolean value)    throws SAXNotRecognizedException {     throw new SAXNotRecognizedException(name);  }  public Object getProperty(String name)    throws SAXNotRecognizedException {    throw new SAXNotRecognizedException(name);  }  public void setProperty(String name, Object value)   throws SAXNotRecognizedException {    throw new SAXNotRecognizedException(name);  }  public void setEntityResolver(EntityResolver resolver) {}  public EntityResolver getEntityResolver() {    return null;   }    public void setDTDHandler(DTDHandler handler) {}  public DTDHandler getDTDHandler() {    return null;   }  public void setContentHandler(ContentHandler handler) {}  public ContentHandler getContentHandler() {    return null;   }  public void setErrorHandler(ErrorHandler handler) {}  public ErrorHandler getErrorHandler() {    return null;   }  public void parse(InputSource input) {}  public void parse(String systemID) {}   }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -