SourceForge: famflows/famflows: changeset 79:04758cb55af4
added the convert button default tip
authorPasqualino Ferrentino <lino.ferrentino@gmail.com>
Fri Sep 04 07:49:31 2009 +0200 (3 months ago)
changeset 7904758cb55af4
parent 78 24fe7d65f5c1
added the convert button
src/famflows/v/MainPanel.java
     1.1 --- a/src/famflows/v/MainPanel.java	Mon Mar 23 21:41:09 2009 +0100
     1.2 +++ b/src/famflows/v/MainPanel.java	Fri Sep 04 07:49:31 2009 +0200
     1.3 @@ -119,8 +119,20 @@
     1.4  	JButton butList = new JButton("Query");
     1.5  	this.add(butList);
     1.6  
     1.7 +	JButton butConv = new JButton("CONVERT");
     1.8 +	this.add(butConv);
     1.9 +
    1.10  	this.add(_ss_pnl);
    1.11  
    1.12 +	butConv.addActionListener
    1.13 +	    (
    1.14 +	     new ActionListener(){
    1.15 +		 public void actionPerformed(ActionEvent e){
    1.16 +		     JOptionPane.showMessageDialog(null, "This will convert the times.... CAREFUL...");
    1.17 +		 }
    1.18 +	     }
    1.19 +	     );
    1.20 +
    1.21  	butList.addActionListener
    1.22  	    (
    1.23  	     new ActionListener(){