Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.daltransform.app / org.gvsig.daltransform.app.mainplugin / src / main / java / org / gvsig / daltransform / swing / DataTransformWizardPanel.java @ 40558

History | View | Annotate | Download (2.04 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
/*
25
 * AUTHORS (In addition to CIT):
26
 * 2009 {Iver T.I.}   {Task}
27
 */
28

    
29
package org.gvsig.daltransform.swing;
30

    
31
import javax.swing.JPanel;
32

    
33
/**
34
 * This class has to be inherited by all the classes
35
 * that appears on the transformation wizard. It contains
36
 * methods to manage the wizard.  
37
 * @author <a href="mailto:jpiera@gvsig.org">Jorge Piera</a>
38
 */
39
public interface DataTransformWizardPanel {
40

    
41
        /**
42
         * Returns a title for the panel.
43
         * @return
44
         * The panel title.
45
         */
46
        public String getPanelTitle();
47

    
48
        /**
49
         * This method is called when the next button is clicked
50
         */
51
        public void nextPanel();
52

    
53
        /**
54
         * This method is called when the last button is clicked
55
         */
56
        public void lastPanel();
57
        
58
        /**
59
         * This method is called when the panel is displayed
60
         */
61
        public void updatePanel();
62
                
63
        /**
64
         * Return the panel to display.
65
         * @return
66
         * The panel.
67
         */
68
        public JPanel getJPanel();
69
        
70
        /**
71
         * Sets the DataTransformWizard that contains information about
72
         * all the wizard.
73
         * @param dataTransformWizard
74
         * The wizard to set.
75
         */
76
        public void setDataTransformWizard(DataTransformWizard dataTransformWizard);
77
}
78

    
79