Statistics
| Revision:

svn-gvsig-desktop / trunk / extensions / extRasterTools / src / com / iver / cit / gvsig / rasterTools / saveRaster / pruebas2 / MethodDataInputListener.java @ 4267

History | View | Annotate | Download (2.08 KB)

1
package com.iver.cit.gvsig.rasterTools.saveRaster.pruebas2;
2

    
3
import java.awt.event.ActionEvent;
4
import java.awt.event.ActionListener;
5
import java.awt.event.FocusEvent;
6
import java.awt.event.FocusListener;
7
import java.awt.event.KeyEvent;
8
import java.awt.event.KeyListener;
9
import java.awt.event.MouseEvent;
10
import java.awt.event.MouseListener;
11

    
12
import javax.swing.event.ChangeEvent;
13
import javax.swing.event.ChangeListener;
14

    
15

    
16
public class MethodDataInputListener implements ActionListener, ChangeListener, MouseListener, FocusListener,
17
KeyListener {
18

    
19
        private MethodDataInputPanel         panel = null;
20
                
21
        /**
22
         * This is the default constructor
23
         */
24
        public MethodDataInputListener(MethodDataInputPanel panel) {
25
                this.panel = panel;
26
                //rgbInputPanel = ((RGBInputPanel)panel.getPRGBInput());
27
                /*rgbInputPanel.getTBlue().addFocusListener(this);
28
                rgbInputPanel.getTGreen().addFocusListener(this);
29
                rgbInputPanel.getTRed().addFocusListener(this);*/
30
        }
31

    
32
        //*******************************
33
        //ChangeListener
34
        
35
        public void focusGained(FocusEvent e) {
36
                // TODO Auto-generated method stub
37
                
38
        }
39

    
40
        public void focusLost(FocusEvent e) {
41
                // TODO Auto-generated method stub
42
        }
43
        
44
        public void stateChanged(ChangeEvent e) {
45
                // TODO Auto-generated method stub
46
                
47
        }
48
        
49
        //*******************************
50
        //MouseListener
51
        public void mouseClicked(MouseEvent e) {
52
                // TODO Auto-generated method stub
53
                
54
        }
55

    
56
        public void mouseEntered(MouseEvent e) {
57
                // TODO Auto-generated method stub
58
                
59
        }
60

    
61
        public void mouseExited(MouseEvent e) {
62
                // TODO Auto-generated method stub
63
                
64
        }
65

    
66
        public void mousePressed(MouseEvent e) {
67
                // TODO Auto-generated method stub
68
                
69
        }
70

    
71
        public void mouseReleased(MouseEvent e) {
72
                // TODO Auto-generated method stub
73
                
74
        }
75

    
76
        public void keyPressed(KeyEvent e) {
77
                // TODO Auto-generated method stub
78
                
79
        }
80

    
81
        public void keyReleased(KeyEvent e) {
82
                // TODO Auto-generated method stub
83
                
84
        }
85

    
86
        public void keyTyped(KeyEvent e) {
87
                // TODO Auto-generated method stub
88
                
89
        }
90

    
91
        //*******************************
92
        //ActionListener
93
        
94
        public void actionPerformed(ActionEvent e) {
95
                // TODO Auto-generated method stub
96
                
97
        }
98

    
99
}