OSDN Git Service

Java11 - AdjustTime2
[importpicture/importpicture.git] / importPicture / src / osm / jp / gpx / matchtime / gui / ParameterPanelTime.java
diff --git a/importPicture/src/osm/jp/gpx/matchtime/gui/ParameterPanelTime.java b/importPicture/src/osm/jp/gpx/matchtime/gui/ParameterPanelTime.java
deleted file mode 100644 (file)
index 19a0e63..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-package osm.jp.gpx.matchtime.gui;
-
-import java.awt.event.ActionEvent;
-import java.awt.event.ActionListener;
-import javax.swing.JButton;
-import javax.swing.JFileChooser;
-
-@SuppressWarnings("serial")
-public class ParameterPanelTime extends ParameterPanel implements ActionListener {
-    JFileChooser fc;
-    public JButton doButton;
-
-    @SuppressWarnings({"OverridableMethodCallInConstructor", "LeakingThisInConstructor"})
-    public ParameterPanelTime(String label, String text) {
-        super(label, text);
-
-        doButton = new JButton("処理実行", AdjustTime.createImageIcon("images/media_playback_start.png"));
-        doButton.addActionListener(this);
-        this.add(doButton);
-    }
-       
-    @Override
-    public void actionPerformed(ActionEvent e) {
-    }
-}
\ No newline at end of file