Statistics
| Revision:

root / branches / v2_0_0_prep / extensions / extDalTransform / src / main / java / org / gvsig / daltransform / swing / DataTransformGui.java @ 35509

History | View | Annotate | Download (2.61 KB)

1
/* gvSIG. Geographic Information System of the Valencian Government
2
*
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

    
23
/*
24
* AUTHORS (In addition to CIT):
25
* 2009 {Iver T.I.}   {Task}
26
*/
27
 
28
package org.gvsig.daltransform.swing;
29

    
30
import java.awt.Dimension;
31
import java.util.List;
32

    
33
import org.gvsig.fmap.dal.exception.DataException;
34
import org.gvsig.fmap.dal.feature.FeatureStore;
35
import org.gvsig.fmap.dal.feature.FeatureStoreTransform;
36

    
37
/**
38
 * This interface is used to establish a relationship between 
39
 * feature transformations and their user interfaces. It creates 
40
 * the panels that are used to set the parameters that the 
41
 * transformation needs. 
42
 * 
43
 * @author <a href="mailto:jpiera@gvsig.org">Jorge Piera</a>
44
 */
45
public interface DataTransformGui {
46
    
47
        /**
48
         * Creates a feature transformation from a feature store. The
49
         * class that implements this interface can create a transformation
50
         * using this feature store and all the parameters that the user has
51
         * selected. All these parameters must be known by this class
52
         * @param featureStore
53
         * The selected feature store
54
         * @return
55
         * the transformation
56
         * @throws DataException
57
         */
58
        public FeatureStoreTransform createFeatureStoreTransform(FeatureStore featureStore) throws DataException;
59
                
60
    /**
61
     * Creates a list of panels to set the parameters used on the transformation.
62
     * @return
63
     * a set of panels with the parameters of the transformation
64
     */
65
        public List<DataTransformWizardPanel> createPanels();
66

    
67
        /**
68
         * @return the name that is displayed in the feature transformation
69
         * list
70
         */
71
        public String getName();
72
        
73
        /**
74
         * @return a description of the feature transformation
75
         */
76
        public String getDescription();
77
        
78
        /**
79
         * Returns the minimum size that has to be the wizard to display
80
         * the forms.
81
         * @return
82
         * The minimum size for the panels. 
83
         */
84
        public Dimension getMinDimension();
85
}
86