Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.library / org.gvsig.ui / src / test / java / org / gvsig / gui / beans / panelGroup / samples / SampleInfoPanel.java @ 40561

History | View | Annotate | Download (4.52 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
package org.gvsig.gui.beans.panelGroup.samples;
25

    
26
import java.awt.Color;
27
import java.awt.Dimension;
28
import java.io.Serializable;
29

    
30
import javax.swing.JScrollPane;
31
import javax.swing.JTextArea;
32

    
33
import org.gvsig.gui.beans.panelGroup.panels.AbstractPanel;
34

    
35
/**
36
 * <p>Sample of {@link AbstractPanel AbstractPanel}.</p>
37
 * 
38
 * @version 16/10/2007
39
 * @author Pablo Piqueras Bartolom? (pablo.piqueras@iver.es) 
40
 */
41
public class SampleInfoPanel extends AbstractPanel implements Serializable {
42
        private static final long serialVersionUID = -1629511810619122126L;
43

    
44
        /**
45
         * <p>Element for the interface.</p>
46
         */
47
        private JTextArea jTextArea = null;
48
        
49
        /**
50
         * @see AbstractPanel#AbstractPanel()
51
         */
52
        public SampleInfoPanel() {
53
                super();
54
                initialize();
55
        }
56
        
57
        /**
58
         * @see AbstractPanel#AbstractPanel(String, String, String)
59
         */
60
        public SampleInfoPanel(String id, String label, String labelGroup) {
61
                super(id, label, labelGroup);
62
                initialize();
63
        }
64
        
65
        @Override
66
        protected void initialize() {
67
                add(new JScrollPane(getJTextArea()));
68
                setToolTipText(getID());
69
                
70
                setID(Samples_Data.PANELS1_IDS[0]);
71
                setLabel(Samples_Data.PANELS1_LABELS[0]);
72
                setLabelGroup(Samples_Data.PANELS1_LABELGROUPS[0]);
73
                setPreferredSize(new Dimension(Samples_Data.PANELS_DEFAULT_WIDTH, Samples_Data.PANELS_DEFAULT_HEIGHT));
74
                resetChangedStatus();
75
        }
76
        
77
        /**
78
         * This method initializes jTextArea
79
         *
80
         * @return JTextArea
81
         */
82
        private JTextArea getJTextArea() {
83
                if (jTextArea == null) {
84
                        jTextArea = new JTextArea(5, 40);
85
                        jTextArea.setText("I\'m a JTextArea object in the \"Panel\" with:\n\nID: " + getID() + "\nLabel: " + getLabel() + "\nLabelGroup: " + getLabelGroup());
86
                        jTextArea.setEditable(false);
87
                        jTextArea.setBackground(Color.RED);
88
                }
89

    
90
                return jTextArea;
91
        }
92
        
93
        @Override
94
        public void setID(String id) {
95
                super.setID(id);
96
                
97
                setToolTipText(getID());
98
                getJTextArea().setText("I\'m a JTextArea object in the \"Panel\" with:\n\nID: " + getID() + "\nLabel: " + getLabel() + "\nLabelGroup: " + getLabelGroup());
99
                hasChanged = true;
100
        }
101

    
102
        @Override
103
        public void setLabel(String label) {
104
                super.setLabel(label);
105
                
106
                getJTextArea().setText("I\'m a JTextArea object in the \"Panel\" with:\n\nID: " + getID() + "\nLabel: " + getLabel() + "\nLabelGroup: " + getLabelGroup());
107
                hasChanged = true;
108
        }
109

    
110
        @Override
111
        public void setLabelGroup(String labelGroup) {
112
                super.setLabelGroup(labelGroup);
113
                
114
                getJTextArea().setText("I\'m a JTextArea object in the \"Panel\" with:\n\nID: " + getID() + "\nLabel: " + getLabel() + "\nLabelGroup: " + getLabelGroup());
115
                hasChanged = true;
116
        }
117

    
118
        /*
119
         * (non-Javadoc)
120
         * @see org.gvsig.gui.beans.panelGroup.panels.IPanel#accept()
121
         */
122
        public void accept() {
123
                System.out.println("I'm the IPanel: " + toString() + "\n and I'm executing an 'accept' method.");
124
        }
125

    
126
        /*
127
         * (non-Javadoc)
128
         * @see org.gvsig.gui.beans.panelGroup.panels.IPanel#apply()
129
         */
130
        public void apply() {
131
                System.out.println("I'm the IPanel: " + toString() + "\n and I'm executing an 'apply' method.");
132
        }
133

    
134
        /*
135
         * (non-Javadoc)
136
         * @see org.gvsig.gui.beans.panelGroup.panels.IPanel#cancel()
137
         */
138
        public void cancel() {
139
                System.out.println("I'm the IPanel: " + toString() + "\n and I'm executing a 'cancel' method.");
140
        }
141

    
142
        /*
143
         * (non-Javadoc)
144
         * @see org.gvsig.gui.beans.panelGroup.panels.IPanel#selected()
145
         */
146
        public void selected() {
147
                System.out.println("I'm the IPanel: " + toString() + "\n and I've been selected. My information is: " +
148
                                 "\n\tID: " + getID() + "\n\tLABEL_GROUP: " + getLabelGroup() + "\n\tLABEL: " + getLabel() + "\n\tCLASS: " + getClass() +
149
                                 "\n\tMy Preferred Size: " + getPreferredSize() + "\n\tAnd My size: " + getSize());
150
        }
151
}