Statistics
| Revision:

root / branches / v2_0_0_prep / extensions / org.gvsig.daltransform.app.mainplugin / src / main / java / org / gvsig / daltransform / swing / DataTransformWizardPanel.java @ 38552

History | View | Annotate | Download (1.99 KB)

1 28893 jpiera
/* gvSIG. Geographic Information System of the Valencian Government
2 29164 jpiera
 *
3
 * Copyright (C) 2007-2008 Infrastructures and Transports Department
4
 * of the Valencian Government (CIT)
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 2
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
 */
22 28893 jpiera
23
/*
24 29164 jpiera
 * AUTHORS (In addition to CIT):
25
 * 2009 {Iver T.I.}   {Task}
26
 */
27
28 35509 nfrancisco
package org.gvsig.daltransform.swing;
29 28893 jpiera
30 29164 jpiera
import javax.swing.JPanel;
31 28893 jpiera
32
/**
33
 * This class has to be inherited by all the classes
34
 * that appears on the transformation wizard. It contains
35 29164 jpiera
 * methods to manage the wizard.
36 28893 jpiera
 * @author <a href="mailto:jpiera@gvsig.org">Jorge Piera</a>
37
 */
38 29164 jpiera
public interface DataTransformWizardPanel {
39
40 28893 jpiera
        /**
41 29164 jpiera
         * Returns a title for the panel.
42
         * @return
43
         * The panel title.
44 28893 jpiera
         */
45 29164 jpiera
        public String getPanelTitle();
46 28893 jpiera
47
        /**
48 29164 jpiera
         * This method is called when the next button is clicked
49 28893 jpiera
         */
50 29164 jpiera
        public void nextPanel();
51
52 28893 jpiera
        /**
53 29164 jpiera
         * This method is called when the last button is clicked
54 28893 jpiera
         */
55 29164 jpiera
        public void lastPanel();
56 28893 jpiera
57
        /**
58 29164 jpiera
         * This method is called when the panel is displayed
59 28893 jpiera
         */
60 29164 jpiera
        public void updatePanel();
61
62 28893 jpiera
        /**
63 29164 jpiera
         * Return the panel to display.
64
         * @return
65
         * The panel.
66 28893 jpiera
         */
67 29164 jpiera
        public JPanel getJPanel();
68 28893 jpiera
69
        /**
70 29164 jpiera
         * Sets the DataTransformWizard that contains information about
71
         * all the wizard.
72
         * @param dataTransformWizard
73
         * The wizard to set.
74 28893 jpiera
         */
75 29164 jpiera
        public void setDataTransformWizard(DataTransformWizard dataTransformWizard);
76 28893 jpiera
}
77