InstanceListener.java
Upload User: rhdiban
Upload Date: 2013-08-09
Package Size: 15085k
Code Size: 1k
Category:

Windows Develop

Development Platform:

Java

  1. /*  *    This program is free software; you can redistribute it and/or modify  *    it under the terms of the GNU General Public License as published by  *    the Free Software Foundation; either version 2 of the License, or  *    (at your option) any later version.  *  *    This program is distributed in the hope that it will be useful,  *    but WITHOUT ANY WARRANTY; without even the implied warranty of  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the  *    GNU General Public License for more details.  *  *    You should have received a copy of the GNU General Public License  *    along with this program; if not, write to the Free Software  *    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */ /*  *    InstanceListener.java  *    Copyright (C) 2002 Mark Hall  *  */ package weka.gui.beans;
  2. import java.util.EventListener;
  3. /**
  4.  * Interface to something that can accept instance events
  5.  *
  6.  * @author <a href="mailto:mhall@cs.waikato.ac.nz">Mark Hall</a>
  7.  * @version $Revision: 1.1 $
  8.  */
  9. public interface InstanceListener extends EventListener {
  10.   
  11.   /**
  12.    * Accept and process an instance event
  13.    *
  14.    * @param e an <code>InstanceEvent</code> value
  15.    */
  16.   void acceptInstance(InstanceEvent e);
  17. }