📄 compactlexicalhandler.java
字号:
package org.xml.sax.ext;public interface LexicalHandler { public void startDTD(String name, String publicId, String systemId) throws SAXException; public void endDTD() throws SAXException; public void startEntity(String name) throws SAXException; public void endEntity(String name) throws SAXException; public void startCDATA() throws SAXException; public void endCDATA() throws SAXException; public void comment(char[] text, int start, int length) throws SAXException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -