pluginlistener.java

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

JAVA
27
字号
/* * PlugInListener.java * * Created on October 11, 2004, 4:29 PM */package org.joone.util;/** * This interface defines the methods needed to be implemented by listeners that * listens to plug-ins that might send data changed / plug-in events. *  * <!-- This class replaces InputPluginListener and OutputPluginListener --> * * @author  Boris Jansen */public interface  PlugInListener {        /**     * This method is called by plug-ins whenever data is changed.     *     * @param anEvent the event that is send, i.e. the event indicating that the     * data is changed.     */    public void dataChanged(PlugInEvent anEvent);}

⌨️ 快捷键说明

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