Example usage for weka.gui.beans BeanVisual BeanVisual

List of usage examples for weka.gui.beans BeanVisual BeanVisual

Introduction

In this page you can find the example usage for weka.gui.beans BeanVisual BeanVisual.

Prototype

public BeanVisual(String visualName, String iconPath, String animatedIconPath) 

Source Link

Document

Constructor

Usage

From source file:com.sliit.graph.ScatterPlotMatrix.java

protected void appearanceDesign() {
    m_matrixPanel = null;// ww w.j  a v a2  s .  co  m
    removeAll();
    m_visual = new BeanVisual("ScatterPlotMatrix", BeanVisual.ICON_PATH + "ScatterPlotMatrix.gif",
            BeanVisual.ICON_PATH + "ScatterPlotMatrix_animated.gif");
    setLayout(new BorderLayout());
    add(m_visual, BorderLayout.CENTER);
}