inspectable.java

来自「一个纯java写的神经网络源代码」· Java 代码 · 共 29 行

JAVA
29
字号
/* * User: Harry Glasgow * Date: 12/12/2002 * Time: 18:13:12 * Interface that defines methods for classes that * can expose their internal values for inspection. */package org.joone.inspection;import java.util.Collection;public interface Inspectable {    /**     * Method to get a collection of inspectable objects.     * @see org.joone.Inspection     * @return list of Inspectable objects     */    public Collection Inspections();    /**     * Method to get the title to show     * in the InspectionFrame tab.     * @see org.joone.InspectionFrame     * @return title of the class.     */    public String InspectableTitle();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?