Statistics
| Revision:

svn-gvsig-desktop / trunk / applications / appCatalogYNomenclatorClient / src / es / gva / cit / catalogClient / profiles / AdditionalClauses.java @ 3486

History | View | Annotate | Download (2.53 KB)

1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
*
3
* Copyright (C) 2004 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
* For more information, contact:
20
*
21
*  Generalitat Valenciana
22
*   Conselleria d'Infraestructures i Transport
23
*   Av. Blasco Ib??ez, 50
24
*   46010 VALENCIA
25
*   SPAIN
26
*
27
*      +34 963862235
28
*   gvsig@gva.es
29
*      www.gvsig.gva.es
30
*
31
*    or
32
*
33
*   IVER T.I. S.A
34
*   Salamanca 50
35
*   46005 Valencia
36
*   Spain
37
*
38
*   +34 963163400
39
*   dac@iver.es
40
*/
41
package es.gva.cit.catalogClient.profiles;
42

    
43

    
44

    
45
/**
46
 * This class is used like an structure. It contains the fields needed to add a new
47
 * operation to the query language.
48
 * 
49
 * @author Jorge Piera Llodra (piera_jor@gva.es)
50
 */
51
public class AdditionalClauses {
52
    String property;
53
    String value;
54
    String concorancia;
55
    String relationship;
56
    String type;
57

    
58
    /**
59
     * @param property
60
     * @param value
61
     * @param concorancia
62
     * @param relationship
63
     * @param type
64
     */
65
    public AdditionalClauses(String property, String value, String concorancia,
66
        String relationship, String type) {
67
        super();
68
        this.property = property;
69
        this.value = value;
70
        this.concorancia = concorancia;
71
        this.relationship = relationship;
72
        this.type = type;
73
    }
74

    
75
    /**
76
     * @return Returns the concorancia.
77
     */
78
    public String getConcorancia() {
79
        return concorancia;
80
    }
81

    
82
    /**
83
     * @return Returns the property.
84
     */
85
    public String getProperty() {
86
        return property;
87
    }
88

    
89
    /**
90
     * @return Returns the relationship.
91
     */
92
    public String getRelationship() {
93
        return relationship;
94
    }
95

    
96
    /**
97
     * @return Returns the type.
98
     */
99
    public String getType() {
100
        return type;
101
    }
102

    
103
    /**
104
     * @return Returns the value.
105
     */
106
    public String getValue() {
107
        return value;
108
    }
109
}