testdescriptor.java
来自「检查Java程序漏洞」· Java 代码 · 共 22 行
JAVA
22 行
/** * BSD-style license; for more info see http://pmd.sourceforge.net/license.html*/package test.net.sourceforge.pmd.testframework;import net.sourceforge.pmd.Rule;public class TestDescriptor { public String code; public String description; public int numberOfProblemsExpected; public Rule rule; public TestDescriptor(String code, String description, int numberOfProblemsExpected, Rule rule) { this.rule = rule; this.code = code; this.description = description; this.numberOfProblemsExpected = numberOfProblemsExpected; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?