@@ -111,8 +111,8 @@ public class SimulationListPanel extends DocumentEditorSubPanel {
111
111
private JButton copyButton = null ;
112
112
private JButton ivjNewButton = null ;
113
113
private JButton ivjNativeResultsButton = null ;
114
- private JButton importBatchButton = null ;
115
- private JButton exportBatchButton = null ;
114
+ // private JButton importBatchButton = null;
115
+ // private JButton exportBatchButton = null;
116
116
117
117
// private JButton ivjPythonResultsButton = null;
118
118
private JButton ivjRunButton = null ;
@@ -148,11 +148,11 @@ public void actionPerformed(java.awt.event.ActionEvent e) {
148
148
runSimulations ();
149
149
} else if (e .getSource () == stopButton ) {
150
150
stopSimulations ();
151
- } else if (e .getSource () == exportBatchButton ) {
152
- // DialogUtils.showInfoDialog(SimulationListPanel.this, "Under Construction");
153
- importBatchSimulations ();
154
- } else if (e .getSource () == importBatchButton ) {
155
- createBatchSimulations ();
151
+ // } else if (e.getSource() == exportBatchButton) {
152
+ //// DialogUtils.showInfoDialog(SimulationListPanel.this, "Under Construction");
153
+ // importBatchSimulations();
154
+ // } else if (e.getSource() == importBatchButton) {
155
+ // createBatchSimulations();
156
156
} else if (e .getSource () == getNativeResultsButton ()) {
157
157
showSimulationResults (ViewerType .NativeViewer_only );
158
158
// } else if (e.getSource() == getPythonResultsButton()) {
@@ -471,12 +471,12 @@ private javax.swing.JToolBar getToolBar() {
471
471
copyButton = new JButton ("" , VCellIcons .copySimIcon );
472
472
copyButton .setToolTipText ("Copy Simulation" );
473
473
copyButton .addActionListener (ivjEventHandler );
474
- importBatchButton = new JButton ("" , VCellIcons .importBatchSimIcon );
475
- importBatchButton .setToolTipText ("Import Batch Simulation Data" );
476
- importBatchButton .addActionListener (ivjEventHandler );
477
- exportBatchButton = new JButton ("" , VCellIcons .exportBatchSimIcon );
478
- exportBatchButton .setToolTipText ("Export Batch Simulation Results" );
479
- exportBatchButton .addActionListener (ivjEventHandler );
474
+ // importBatchButton = new JButton("", VCellIcons.importBatchSimIcon);
475
+ // importBatchButton.setToolTipText("Import Batch Simulation Data");
476
+ // importBatchButton.addActionListener(ivjEventHandler);
477
+ // exportBatchButton = new JButton("", VCellIcons.exportBatchSimIcon);
478
+ // exportBatchButton.setToolTipText("Export Batch Simulation Results");
479
+ // exportBatchButton.addActionListener(ivjEventHandler);
480
480
stopButton = new JButton ("" , VCellIcons .stopSimIcon );
481
481
stopButton .setToolTipText ("Stop Simulation" );
482
482
stopButton .setEnabled (false );
@@ -502,10 +502,10 @@ private javax.swing.JToolBar getToolBar() {
502
502
toolBar .add (copyButton );
503
503
toolBar .add (getEditButton ());
504
504
toolBar .add (getDeleteButton ());
505
- toolBar .addSeparator ();
506
- toolBar .add (importBatchButton );
507
- toolBar .add (exportBatchButton );
508
- toolBar .addSeparator ();
505
+ // toolBar.addSeparator();
506
+ // toolBar.add(importBatchButton);
507
+ // toolBar.add(exportBatchButton);
508
+ // toolBar.addSeparator();
509
509
510
510
toolBar .add (getMassConservationModelReductionPanel ());
511
511
toolBar .add (Box .createHorizontalGlue ());
@@ -522,8 +522,8 @@ private javax.swing.JToolBar getToolBar() {
522
522
// toolBar.add(particleViewButton);
523
523
524
524
ReactionCartoonEditorPanel .setToolBarButtonSizes (getNewButton ());
525
- ReactionCartoonEditorPanel .setToolBarButtonSizes (importBatchButton );
526
- ReactionCartoonEditorPanel .setToolBarButtonSizes (exportBatchButton );
525
+ // ReactionCartoonEditorPanel.setToolBarButtonSizes(importBatchButton);
526
+ // ReactionCartoonEditorPanel.setToolBarButtonSizes(exportBatchButton);
527
527
ReactionCartoonEditorPanel .setToolBarButtonSizes (copyButton );
528
528
ReactionCartoonEditorPanel .setToolBarButtonSizes (getEditButton ());
529
529
ReactionCartoonEditorPanel .setToolBarButtonSizes (getDeleteButton ());
@@ -1156,8 +1156,8 @@ private void refreshButtonsLax() {
1156
1156
bHasData = bHasData || simStatus .getHasData ();
1157
1157
}
1158
1158
}
1159
- importBatchButton .setEnabled (bBatch );
1160
- exportBatchButton .setEnabled (bBatch );
1159
+ // importBatchButton.setEnabled(bBatch);
1160
+ // exportBatchButton.setEnabled(bBatch);
1161
1161
copyButton .setEnabled (bCopy );
1162
1162
getEditButton ().setEnabled (bEditable );
1163
1163
getDeleteButton ().setEnabled (bDeletable );
0 commit comments