Move common variables to base class
This commit is contained in:
parent
74777df2d6
commit
49f3c12a70
@ -32,8 +32,6 @@ import info.openrocket.swing.gui.widgets.SaveFileChooser;
|
|||||||
public class SimulationExportPanel extends CSVExportPanel<FlightDataType> {
|
public class SimulationExportPanel extends CSVExportPanel<FlightDataType> {
|
||||||
|
|
||||||
private static final long serialVersionUID = 3423905472892675964L;
|
private static final long serialVersionUID = 3423905472892675964L;
|
||||||
private static final String SPACE = "SPACE";
|
|
||||||
private static final String TAB = "TAB";
|
|
||||||
private static final Translator trans = Application.getTranslator();
|
private static final Translator trans = Application.getTranslator();
|
||||||
|
|
||||||
private static final int OPTION_SIMULATION_COMMENTS = 0;
|
private static final int OPTION_SIMULATION_COMMENTS = 0;
|
||||||
|
@ -29,6 +29,8 @@ import java.util.Arrays;
|
|||||||
|
|
||||||
public class CSVExportPanel<T extends UnitValue> extends JPanel {
|
public class CSVExportPanel<T extends UnitValue> extends JPanel {
|
||||||
private static final Translator trans = Application.getTranslator();
|
private static final Translator trans = Application.getTranslator();
|
||||||
|
protected static final String SPACE = "SPACE";
|
||||||
|
protected static final String TAB = "TAB";
|
||||||
|
|
||||||
private final JTable table;
|
private final JTable table;
|
||||||
private final SelectionTableModel tableModel;
|
private final SelectionTableModel tableModel;
|
||||||
@ -140,8 +142,7 @@ public class CSVExportPanel<T extends UnitValue> extends JPanel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public boolean doExport() {
|
public boolean doExport() {
|
||||||
// TODO: Implement this method
|
throw new RuntimeException("Not implemented");
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void updateSelectedCount() {
|
private void updateSelectedCount() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user