📄 astbooleanliteral.java
字号:
/* Generated By:JJTree: Do not edit this line. ASTBooleanLiteral.java */package net.sourceforge.pmd.ast;public class ASTBooleanLiteral extends SimpleNode { public ASTBooleanLiteral(int id) { super(id); } public ASTBooleanLiteral(JavaParser p, int id) { super(p, id); } private boolean isTrue; public void setTrue() { isTrue = true; } public boolean isTrue() { return this.isTrue; } /** Accept the visitor. **/ public Object jjtAccept(JavaParserVisitor visitor, Object data) { return visitor.visit(this, data); } public void dump(String prefix) { String out = isTrue ? "true" : "false"; System.out.println(toString(prefix) + ":" + out); dumpChildren(prefix); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -