⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 inspectable.java

📁 一个纯java写的神经网络源代码
💻 JAVA
字号:
/* * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -