astexplicitconstructorinvocation.java
来自「检查Java程序漏洞」· Java 代码 · 共 42 行
JAVA
42 行
/* Generated By:JJTree: Do not edit this line. ASTExplicitConstructorInvocation.java */package net.sourceforge.pmd.ast;public class ASTExplicitConstructorInvocation extends SimpleNode { public ASTExplicitConstructorInvocation(int id) { super(id); } public ASTExplicitConstructorInvocation(JavaParser p, int id) { super(p, id); } /** Accept the visitor. **/ public Object jjtAccept(JavaParserVisitor visitor, Object data) { return visitor.visit(this, data); } public int getArgumentCount() { return ((ASTArguments) this.jjtGetChild(0)).getArgumentCount(); } private String thisOrSuper; public void setIsThis() { this.thisOrSuper = "this"; } public void setIsSuper() { this.thisOrSuper = "super"; } public boolean isThis() { return thisOrSuper != null && thisOrSuper.equals("this"); } public boolean isSuper() { return thisOrSuper != null && thisOrSuper.equals("super"); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?