net.maizegenetics.analysis.chart.BasicChartPanel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tassel Show documentation
Show all versions of tassel Show documentation
TASSEL is a software package to evaluate traits associations, evolutionary patterns, and linkage
disequilibrium.
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 - 2025 Weber Informatics LLC | Privacy Policy