All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.maizegenetics.analysis.chart.BasicChartPanel Maven / Gradle / Ivy

package net.maizegenetics.analysis.chart;

import org.jfree.chart.JFreeChart;

import javax.swing.*;
/**
 * 

Title:

*

Description:

*

Copyright: Copyright (c) 2004

*

Company:

* @author not attributable * @version 1.0 */ public abstract class BasicChartPanel extends JPanel { JFreeChart chart; public BasicChartPanel() { } public JFreeChart getChart() { return chart; } public abstract JComponent getMainComponent(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy