OSDN Git Service

19a0e6345505b3f984182ae3ec912e646019fa78
[importpicture/importpicture.git] / src / osm / jp / gpx / matchtime / gui / ParameterPanelTime.java
1 package osm.jp.gpx.matchtime.gui;
2
3 import java.awt.event.ActionEvent;
4 import java.awt.event.ActionListener;
5 import javax.swing.JButton;
6 import javax.swing.JFileChooser;
7
8 @SuppressWarnings("serial")
9 public class ParameterPanelTime extends ParameterPanel implements ActionListener {
10     JFileChooser fc;
11     public JButton doButton;
12
13     @SuppressWarnings({"OverridableMethodCallInConstructor", "LeakingThisInConstructor"})
14     public ParameterPanelTime(String label, String text) {
15         super(label, text);
16
17         doButton = new JButton("処理実行", AdjustTime.createImageIcon("images/media_playback_start.png"));
18         doButton.addActionListener(this);
19         this.add(doButton);
20     }
21         
22     @Override
23     public void actionPerformed(ActionEvent e) {
24     }
25 }