zcompactcomment.java
来自「随书的代码」· Java 代码 · 共 25 行
JAVA
25 行
package org.jdom;public class Comment implements Serializable, Cloneable { protected String text; protected Object parent; protected Comment(); public Comment(String text); public Element getParent(); protected Comment setParent(Element parent); public Comment detach(); public Document getDocument(); protected Comment setDocument(Document document); public String getText(); public Comment setText(String text); public String toString(); public final boolean equals(Object ob); public final int hashCode(); public Object clone(); }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?