Search in sources :

Example 1 with SimulationSummaryPanel

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;
}
Also used : SimulationSummaryPanel(cbit.vcell.solver.ode.gui.SimulationSummaryPanel)

Example 2 with 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);
    }
}
Also used : SimulationListPanel(cbit.vcell.client.desktop.simulation.SimulationListPanel) OutputFunctionsPanel(cbit.vcell.client.desktop.simulation.OutputFunctionsPanel) SimulationSummaryPanel(cbit.vcell.solver.ode.gui.SimulationSummaryPanel) GeometryViewer(cbit.vcell.geometry.gui.GeometryViewer) CSGObjectPropertiesPanel(cbit.vcell.geometry.gui.CSGObjectPropertiesPanel)

Aggregations

SimulationSummaryPanel (cbit.vcell.solver.ode.gui.SimulationSummaryPanel)2 OutputFunctionsPanel (cbit.vcell.client.desktop.simulation.OutputFunctionsPanel)1 SimulationListPanel (cbit.vcell.client.desktop.simulation.SimulationListPanel)1 CSGObjectPropertiesPanel (cbit.vcell.geometry.gui.CSGObjectPropertiesPanel)1 GeometryViewer (cbit.vcell.geometry.gui.GeometryViewer)1