use of org.vcell.util.gui.SpecialtyTableRenderer in project vcell by virtualcell.
the class ODEDataViewer method getPlotPane1.
/**
* Return the PlotPane1 property value.
* @return cbit.plot.PlotPane
*/
private PlotPane getPlotPane1() {
if (ivjPlotPane1 == null) {
try {
ivjPlotPane1 = new PlotPane();
ivjPlotPane1.setName("PlotPane1");
SpecialtyTableRenderer str = new RenderDataViewerDoubleWithTooltip();
ivjPlotPane1.setSpecialityRenderer(str);
} catch (java.lang.Throwable ivjExc) {
handleException(ivjExc);
}
}
return ivjPlotPane1;
}
Aggregations