Revision 28996 branches/v2_0_0_prep/libraries/libFMap_geometries/src/org/gvsig/fmap/geom/complex/Complex.java

View differences:

Complex.java
1
package org.gvsig.fmap.geom.complex;
2

  
3
import org.gvsig.fmap.geom.Geometry;
4

  
5
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
1
/* gvSIG. Geographic Information System of the Valencian Government
6 2
 *
7
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
8
 *
3
 * Copyright (C) 2007-2008 Infrastructures and Transports Department
4
 * of the Valencian Government (CIT)
5
 * 
9 6
 * This program is free software; you can redistribute it and/or
10 7
 * modify it under the terms of the GNU General Public License
11 8
 * as published by the Free Software Foundation; either version 2
12 9
 * of the License, or (at your option) any later version.
13
 *
10
 * 
14 11
 * This program is distributed in the hope that it will be useful,
15 12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 14
 * GNU General Public License for more details.
18
 *
15
 * 
19 16
 * You should have received a copy of the GNU General Public License
20 17
 * along with this program; if not, write to the Free Software
21
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
22
 *
23
 * For more information, contact:
24
 *
25
 *  Generalitat Valenciana
26
 *   Conselleria d'Infraestructures i Transport
27
 *   Av. Blasco Ib??ez, 50
28
 *   46010 VALENCIA
29
 *   SPAIN
30
 *
31
 *      +34 963862235
32
 *   gvsig@gva.es
33
 *      www.gvsig.gva.es
34
 *
35
 *    or
36
 *
37
 *   IVER T.I. S.A
38
 *   Salamanca 50
39
 *   46005 Valencia
40
 *   Spain
41
 *
42
 *   +34 963163400
43
 *   dac@iver.es
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
19
 * MA  02110-1301, USA.
20
 * 
44 21
 */
45
/* CVS MESSAGES:
46
 *
47
 * $Id: GeometricComplex.java,v 1.1 2008/03/12 08:46:21 cvs Exp $
48
 * $Log: GeometricComplex.java,v $
49
 * Revision 1.1  2008/03/12 08:46:21  cvs
50
 * *** empty log message ***
51
 *
52
 *
22

  
23
/*
24
 * AUTHORS (In addition to CIT):
25
 * 2009 {Iver T.I.}   {Task}
53 26
 */
27

  
28
package org.gvsig.fmap.geom.complex;
29

  
30
import org.gvsig.fmap.geom.Geometry;
31

  
54 32
/**
55
 * @author Jorge Piera Llodr? (jorge.piera@iver.es)
33
 * <p>
34
 * This interface is equivalent to the GM_Complex specified in 
35
 * <a href="http://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=26012">ISO 19107</a>.
36
 * A Complex is a collection of geometrically disjoint, simple {@link Primitive}'s. 
37
 * If a {@link Primitive} (other than a {@link Point}) is in a particular Complex, 
38
 * then there exists a set of primitives of lower dimension in the same complex 
39
 * that form the boundary of this primitive.
40
 * </p>
41
 * @see <a href="http://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=26012">ISO 19107</a>
42
 * @author <a href="mailto:jpiera@gvsig.org">Jorge Piera</a>
56 43
 */
57 44
public interface Complex extends Geometry {
58 45

  

Also available in: Unified diff