pluginevent.java
来自「一个纯java写的神经网络源代码」· Java 代码 · 共 29 行
JAVA
29 行
/* * PlugInEvent.java * * Created on October 11, 2004, 4:36 PM */package org.joone.util;import java.util.EventObject;/** * This event is sent by plug-ins indicating that data is changed. Listeners * (implemening {@link PlugInListener}) will be notified by this event that data * is changed. * * @author Boris Jansen */public class PlugInEvent extends EventObject { /** * Creates a new instance of PlugInEvent * * @param anObject the object that creates and sends this event to the listeners. */ public PlugInEvent(Object anObject) { super(anObject); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?