Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.library / org.gvsig.ui / src / test / java / org / gvsig / gui / beans / colorbutton / TestColorButton.java @ 40561

History | View | Annotate | Download (2.85 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
25
*
26
* Copyright (C) 2005 IVER T.I. and Generalitat Valenciana.
27
*
28
* This program is free software; you can redistribute it and/or
29
* modify it under the terms of the GNU General Public License
30
* as published by the Free Software Foundation; either version 2
31
* of the License, or (at your option) any later version.
32
*
33
* This program is distributed in the hope that it will be useful,
34
* but WITHOUT ANY WARRANTY; without even the implied warranty of
35
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
36
* GNU General Public License for more details.
37
*
38
* You should have received a copy of the GNU General Public License
39
* along with this program; if not, write to the Free Software
40
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
41
*/
42
package org.gvsig.gui.beans.colorbutton;
43

    
44
import java.awt.Dimension;
45

    
46
import javax.swing.JPanel;
47

    
48
import org.gvsig.gui.beans.TestUI;
49
/**
50
* Test del ColorButton
51
*
52
* @version 08/05/2007
53
* @author BorSanZa - Borja S?nchez Zamorano (borja.sanchez@iver.es)
54
*/
55
public class TestColorButton implements ColorButtonListener {
56
        private TestUI       jFrame       = null;
57
        private ColorButton colorButton = null;
58

    
59
        public TestColorButton() {
60
                initialize();
61
        }
62

    
63
        private void initialize() {
64
                colorButton = new ColorButton();
65
                colorButton.setEnabled(true);
66
                colorButton.addValueChangedListener(this);
67
                jFrame = new TestUI("TestColorButton");
68
                JPanel jpanel = new JPanel();
69
                jpanel.add(colorButton);
70
                jFrame.setSize(new Dimension(598, 167));
71
                jFrame.setContentPane(jpanel);
72
                jFrame.pack();
73
                jFrame.setVisible(true);
74
        }
75

    
76
        /**
77
         * @param args
78
         */
79
        public static void main(String[] args) {
80
                new TestColorButton();
81
        }
82

    
83
        public void actionValueChanged(ColorButtonEvent e) {
84
                System.out.println("actionValueChanged");
85
        }
86

    
87
        public void actionValueDragged(ColorButtonEvent e) {
88
                System.out.println("actionValueDragged");
89
        }
90
}