📄 nodesettype.java
字号:
package gnu.kawa.xml;import gnu.kawa.reflect.*;import gnu.bytecode.*;import gnu.expr.*;public class NodeSetType extends OccurrenceType{ public NodeSetType (Type itemType) { super(itemType, 0, -1); } public static Type getInstance (Type base) { return new NodeSetType(base); } public String toString () { return super.toString()+"node-set"; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -