weka.gui.beans.AbstractEvaluator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weka-stable Show documentation
Show all versions of weka-stable Show documentation
The Waikato Environment for Knowledge Analysis (WEKA), a machine
learning workbench. This is the stable version. Apart from bugfixes, this version
does not receive any other updates.
/*
* 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 3 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, see .
*/
/*
* AbstractEvaluator.java
* Copyright (C) 2002-2012 University of Waikato, Hamilton, New Zealand
*
*/
package weka.gui.beans;
import java.awt.BorderLayout;
import java.beans.EventSetDescriptor;
import java.io.Serializable;
import javax.swing.JPanel;
import weka.gui.Logger;
/**
* Abstract class for objects that can provide some kind of evaluation for
* classifier, clusterers etc.
*
* @author Mark Hall
* @version $Revision: 8034 $
* @since 1.0
* @see JPanel
* @see Visible
* @see Serializable
*/
public abstract class AbstractEvaluator
extends JPanel
implements Visible, BeanCommon, Serializable {
/** for serialization */
private static final long serialVersionUID = 3983303541814121632L;
/**
* Default visual for evaluators
*/
protected BeanVisual m_visual =
new BeanVisual("AbstractEvaluator",
BeanVisual.ICON_PATH+"DefaultEvaluator.gif",
BeanVisual.ICON_PATH+"DefaultEvaluator_animated.gif");
protected Object m_listenee = null;
protected transient Logger m_logger = null;
/**
* Constructor
*/
public AbstractEvaluator() {
setLayout(new BorderLayout());
add(m_visual, BorderLayout.CENTER);
}
/**
* Set the visual
*
* @param newVisual a BeanVisual
value
*/
public void setVisual(BeanVisual newVisual) {
m_visual = newVisual;
}
/**
* Get the visual
*
* @return a BeanVisual
value
*/
public BeanVisual getVisual() {
return m_visual;
}
/**
* Use the default images for an evaluator
*/
public void useDefaultVisual() {
m_visual.loadIcons(BeanVisual.ICON_PATH+"DefaultEvaluator.gif",
BeanVisual.ICON_PATH+"DefaultEvaluator_animated.gif");
}
/**
* Returns true if, at this time,
* the object will accept a connection according to the supplied
* event name
*
* @param eventName the event name
* @return true if the object will accept a connection
*/
public boolean connectionAllowed(String eventName) {
return (m_listenee == null);
}
/**
* Returns true if, at this time,
* the object will accept a connection according to the supplied
* EventSetDescriptor
*
* @param esd the EventSetDescriptor
* @return true if the object will accept a connection
*/
public boolean connectionAllowed(EventSetDescriptor esd) {
return connectionAllowed(esd.getName());
}
/**
* Notify this object that it has been registered as a listener with
* a source with respect to the supplied event name
*
* @param eventName the event name
* @param source the source with which this object has been registered as
* a listener
*/
public synchronized void connectionNotification(String eventName,
Object source) {
if (connectionAllowed(eventName)) {
m_listenee = source;
}
}
/**
* Notify this object that it has been deregistered as a listener with
* a source with respect to the supplied event named
*
* @param eventName the event name
* @param source the source with which this object has been registered as
* a listener
*/
public synchronized void disconnectionNotification(String eventName,
Object source) {
if (m_listenee == source) {
m_listenee = null;
}
}
/**
* Set a logger
*
* @param logger a weka.gui.Logger
value
*/
public void setLog(weka.gui.Logger logger) {
m_logger = logger;
}
/**
* Stop any processing that the bean might be doing.
* Subclass must implement
*/
public abstract void stop();
}