Statistics
| Revision:

root / branches / v10 / libraries / libRemoteServices / src / org / gvsig / remoteClient / gml / GMLSimpleFeature.java @ 12215

History | View | Annotate | Download (2.07 KB)

1 6722 jorpiell
package org.gvsig.remoteClient.gml;
2
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
3
 *
4
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
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., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
19
 *
20
 * For more information, contact:
21
 *
22
 *  Generalitat Valenciana
23
 *   Conselleria d'Infraestructures i Transport
24
 *   Av. Blasco Ib??ez, 50
25
 *   46010 VALENCIA
26
 *   SPAIN
27
 *
28
 *      +34 963862235
29
 *   gvsig@gva.es
30
 *      www.gvsig.gva.es
31
 *
32
 *    or
33
 *
34
 *   IVER T.I. S.A
35
 *   Salamanca 50
36
 *   46005 Valencia
37
 *   Spain
38
 *
39
 *   +34 963163400
40
 *   dac@iver.es
41
 */
42
/* CVS MESSAGES:
43
 *
44
 * $Id$
45
 * $Log$
46 9917 jorpiell
 * Revision 1.1.2.1  2007-01-25 16:12:59  jorpiell
47
 * Se han sustituido las clases por las que hay en el nuevo driver de GML.
48
 *
49
 * Revision 1.2  2006/12/22 11:25:44  csanchez
50
 * Nuevo parser GML 2.x para gml's sin esquema
51
 *
52
 * Revision 1.1  2006/08/10 12:00:49  jorpiell
53 6722 jorpiell
 * Primer commit del driver de Gml
54
 *
55
 *
56
 */
57
/**
58
 * This class represent a simple feature. It must to be
59
 * inherited by the classes that represent a simple feature
60
 * in GML 2.x and in GML 3.x.
61 9917 jorpiell
 *
62 6722 jorpiell
 * @author Jorge Piera Llodr? (piera_jor@gva.es)
63 9917 jorpiell
 * @author Carlos S?nchez Peri??n (sanchez_carper@gva.es)
64
 *
65 6722 jorpiell
 */
66
public abstract class GMLSimpleFeature {
67
        private String name = null;
68
69
        public GMLSimpleFeature(String name) {
70
                super();
71
                this.name = name;
72
        }
73
74
        /**
75
         * @return Returns the name.
76
         */
77
        public String getName() {
78
                return name;
79
        }
80
}