protectable.java
来自「JAVA 数学程序库 提供常规的数值计算程序包」· Java 代码 · 共 14 行
JAVA
14 行
package jmathlib.tools.junit.framework;
/**
* A <em>Protectable</em> can be run and can throw a Throwable.
*
* @see TestResult
*/
public interface Protectable {
/**
* Run the the following method protected.
*/
public abstract void protect() throws Throwable;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?