use of cbit.vcell.solver.ode.gui.SimulationSummaryPanel in project vcell by virtualcell.
the class BioModelEditor method getSimulationSummaryPanel.
private SimulationSummaryPanel getSimulationSummaryPanel() {
if (simulationSummaryPanel == null) {
try {
simulationSummaryPanel = new SimulationSummaryPanel();
simulationSummaryPanel.setName("SimulationSummaryPanel1");
} catch (java.lang.Throwable ivjExc) {
handleException(ivjExc);
}
}
return simulationSummaryPanel;
}
use of cbit.vcell.solver.ode.gui.SimulationSummaryPanel in project vcell by virtualcell.
the class MathModelEditor method initialize.
private void initialize() {
try {
rightSplitPane.setDividerLocation(400);
rightSplitPane.setBottomComponent(rightBottomTabbedPane);
mathModelEditorTreeModel = new MathModelEditorTreeModel(documentEditorTree);
mathModelEditorTreeModel.setSelectionManager(selectionManager);
mathModelEditorTreeCellRenderer = new MathModelEditorTreeCellRenderer();
documentEditorTree.setModel(mathModelEditorTreeModel);
documentEditorTree.setCellRenderer(mathModelEditorTreeCellRenderer);
vcmlEditorPanel = new VCMLEditorPanel();
vcmlEditorPanel.setMinimumSize(new java.awt.Dimension(198, 148));
rightSplitPane.setTopComponent(vcmlEditorPanel);
geometryViewer = new GeometryViewer();
geometryViewer.setSelectionManager(selectionManager);
geometryViewer.setIssueManager(issueManager);
simulationListPanel = new SimulationListPanel();
simulationListPanel.setSelectionManager(selectionManager);
simulationListPanel.setIssueManager(issueManager);
outputFunctionsPanel = new OutputFunctionsPanel();
outputFunctionsPanel.setSelectionManager(selectionManager);
outputFunctionsPanel.setIssueManager(issueManager);
simulationSummaryPanel = new SimulationSummaryPanel();
simulationSummaryPanel.setSelectionManager(selectionManager);
simulationSummaryPanel.setIssueManager(issueManager);
mathModelEditorAnnotationPanel.setSelectionManager(selectionManager);
mathModelEditorAnnotationPanel.setIssueManager(issueManager);
csgObjectPropertiesPanel = new CSGObjectPropertiesPanel();
csgObjectPropertiesPanel.setSelectionManager(selectionManager);
csgObjectPropertiesPanel.setIssueManager(issueManager);
} catch (java.lang.Throwable ivjExc) {
handleException(ivjExc);
}
}
Aggregations