Statistics
| Revision:

svn-gvsig-desktop / branches / v10 / libraries / libGPE-KML / src / org / gvsig / gpe / kml / parser / profiles / IBindingProfile.java @ 18284

History | View | Annotate | Download (3.74 KB)

1
package org.gvsig.gpe.kml.parser.profiles;
2

    
3
import org.gvsig.gpe.kml.parser.v21.features.DocumentBinding;
4
import org.gvsig.gpe.kml.parser.v21.features.ElementBinding;
5
import org.gvsig.gpe.kml.parser.v21.features.FeatureBinding;
6
import org.gvsig.gpe.kml.parser.v21.features.FolderBinding;
7
import org.gvsig.gpe.kml.parser.v21.features.LookAtBinding;
8
import org.gvsig.gpe.kml.parser.v21.features.MetadataBinding;
9
import org.gvsig.gpe.kml.parser.v21.features.PlaceMarketBinding;
10
import org.gvsig.gpe.kml.parser.v21.features.StyleBinding;
11
import org.gvsig.gpe.kml.parser.v21.geometries.CoordinatesTypeBinding;
12
import org.gvsig.gpe.kml.parser.v21.geometries.DoubleBinding;
13
import org.gvsig.gpe.kml.parser.v21.geometries.GeometryBinding;
14
import org.gvsig.gpe.kml.parser.v21.geometries.InnerBoundaryIsBinding;
15
import org.gvsig.gpe.kml.parser.v21.geometries.LatLonAltBoxBinding;
16
import org.gvsig.gpe.kml.parser.v21.geometries.LineStringTypeBinding;
17
import org.gvsig.gpe.kml.parser.v21.geometries.LinearRingBinding;
18
import org.gvsig.gpe.kml.parser.v21.geometries.MultiGeometryBinding;
19
import org.gvsig.gpe.kml.parser.v21.geometries.OuterBoundaryIsBinding;
20
import org.gvsig.gpe.kml.parser.v21.geometries.PointTypeBinding;
21
import org.gvsig.gpe.kml.parser.v21.geometries.PolygonTypeBinding;
22
import org.gvsig.gpe.kml.parser.v21.geometries.RegionBinding;
23
import org.gvsig.gpe.kml.parser.v21.header.HeaderBinding;
24

    
25

    
26
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
27
 *
28
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
29
 *
30
 * This program is free software; you can redistribute it and/or
31
 * modify it under the terms of the GNU General Public License
32
 * as published by the Free Software Foundation; either version 2
33
 * of the License, or (at your option) any later version.
34
 *
35
 * This program is distributed in the hope that it will be useful,
36
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
37
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
38
 * GNU General Public License for more details.
39
 *
40
 * You should have received a copy of the GNU General Public License
41
 * along with this program; if not, write to the Free Software
42
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
43
 *
44
 * For more information, contact:
45
 *
46
 *  Generalitat Valenciana
47
 *   Conselleria d'Infraestructures i Transport
48
 *   Av. Blasco Ib??ez, 50
49
 *   46010 VALENCIA
50
 *   SPAIN
51
 *
52
 *      +34 963862235
53
 *   gvsig@gva.es
54
 *      www.gvsig.gva.es
55
 *
56
 *    or
57
 *
58
 *   IVER T.I. S.A
59
 *   Salamanca 50
60
 *   46005 Valencia
61
 *   Spain
62
 *
63
 *   +34 963163400
64
 *   dac@iver.es
65
 */
66
/* CVS MESSAGES:
67
 *
68
 * $Id$
69
 * $Log$
70
 *
71
 */
72
/**
73
 * @author Jorge Piera LLodr? (jorge.piera@iver.es)
74
 */
75
public interface IBindingProfile {
76
        
77
        public DocumentBinding getDocumentBinding();
78
        
79
        public ElementBinding getElementBinding();
80
        
81
        public FeatureBinding getFeatureBinding();
82
        
83
        public FolderBinding getFolderBinding();
84
        
85
        public LookAtBinding getLookAtBinding();
86
        
87
        public MetadataBinding getMetadataBinding();
88
        
89
        public PlaceMarketBinding getPlaceMarketBinding();
90
        
91
        public StyleBinding getStyleBinding();
92
        
93
        public CoordinatesTypeBinding getCoordinatesTypeBinding();
94
        
95
        public DoubleBinding getDoubleBinding();
96
        
97
        public GeometryBinding getGeometryBinding();
98
        
99
        public InnerBoundaryIsBinding getInnerBoundaryIsBinding();
100
        
101
        public LatLonAltBoxBinding getLatLonAltBoxBinding();
102
        
103
        public LinearRingBinding getLinearRingBinding();
104
        
105
        public LineStringTypeBinding getLineStringTypeBinding();
106
        
107
        public MultiGeometryBinding getMultiGeometryBinding();
108
        
109
        public OuterBoundaryIsBinding getOuterBoundaryIsBinding();
110
        
111
        public PointTypeBinding getPointTypeBinding();
112
        
113
        public PolygonTypeBinding getPolygonTypeBinding();
114
        
115
        public RegionBinding getRegionBinding();
116
        
117
        public HeaderBinding getHeaderBinding();        
118
}