📄 astvariabledeclaratoridtest.java
字号:
/** * BSD-style license; for more info see http://pmd.sourceforge.net/license.html*/package test.net.sourceforge.pmd.ast;import junit.framework.TestCase;import net.sourceforge.pmd.ast.ASTBlock;import net.sourceforge.pmd.ast.ASTTryStatement;import net.sourceforge.pmd.ast.ASTVariableDeclaratorId;public class ASTVariableDeclaratorIdTest extends TestCase { public void testIsExceptionBlockParameter() { ASTTryStatement tryNode = new ASTTryStatement(1); ASTBlock block = new ASTBlock(2); ASTVariableDeclaratorId v = new ASTVariableDeclaratorId(3); v.jjtSetParent(block); block.jjtSetParent(tryNode); assertTrue(v.isExceptionBlockParameter()); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -