📄 kcomment.java
字号:
// Copyright (c) 2004 Per M.A. Bothner.// This is free software; for terms and warranty disclaimer see ./COPYING.package gnu.kawa.xml;import gnu.xml.*;/* #ifdef use:org.w3c.dom.Node */// import org.w3c.dom.*;/* #endif */public class KComment extends KCharacterData /* #ifdef use:org.w3c.dom.Node */ // implements org.w3c.dom.Comment /* #endif */{ public KComment (NodeTree seq, int ipos) { super(seq, ipos); } /* #ifdef use:org.w3c.dom.Node */ // public short getNodeType () { return Node.COMMENT_NODE; } /* #endif */ public String getNodeName() { return "#comment"; } public static KComment valueOf (String text) { NodeTree tree = new NodeTree(); tree.writeComment(text, 0, text.length()); return new KComment(tree, 0); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -