Statistics
| Revision:

svn-gvsig-desktop / trunk / extensions / extRasterTools-SE / src / org / gvsig / raster / beans / previewbase / ParamStruct.java @ 19307

History | View | Annotate | Download (1.86 KB)

1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2007 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 */
19
package org.gvsig.raster.beans.previewbase;
20

    
21
import org.gvsig.raster.dataset.Params;
22

    
23
/**
24
 * Estructura para los par?metros de PreviewFiltering. Contiene el nombre del 
25
 * filtro, el par?metro y la clase de este.
26
 * 
27
 */
28
public class ParamStruct {
29
        String filterName = null;
30
        Params filterParam = null;
31
        Class filterClass = null;
32

    
33
        /**
34
         * @return the filterName
35
         */
36
        public String getFilterName() {
37
                return filterName;
38
        }
39

    
40
        /**
41
         * @param filterName the filterName to set
42
         */
43
        public void setFilterName(String filterName) {
44
                this.filterName = filterName;
45
        }
46

    
47
        /**
48
         * @return the filterParam
49
         */
50
        public Params getFilterParam() {
51
                return filterParam;
52
        }
53

    
54
        /**
55
         * @param filterParam the filterParam to set
56
         */
57
        public void setFilterParam(Params filterParam) {
58
                this.filterParam = filterParam;
59
        }
60

    
61
        /**
62
         * @return the filterClass
63
         */
64
        public Class getFilterClass() {
65
                return filterClass;
66
        }
67

    
68
        /**
69
         * @param filterClass the filterClass to set
70
         */
71
        public void setFilterClass(Class filterClass) {
72
                this.filterClass = filterClass;
73
        }
74
}