Revision 305 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/core/FGeometryCollection.java

View differences:

FGeometryCollection.java
10 10

  
11 11
import com.iver.cit.gvsig.fmap.ViewPort;
12 12

  
13
public class FGeometryCollection implements FGeometry {
14
    private FGeometry[] geometries;
13
public class FGeometryCollection implements IGeometry {
14
    private IGeometry[] geometries;
15 15

  
16 16
	/**
17
	 * @see com.iver.cit.gvsig.fmap.core.FGeometry#draw(java.awt.Graphics2D, com.iver.cit.gvsig.fmap.ViewPort, org.geotools.renderer.style.Style2D)
17
	 * @see com.iver.cit.gvsig.fmap.core.IGeometry#draw(java.awt.Graphics2D, com.iver.cit.gvsig.fmap.ViewPort, org.geotools.renderer.style.Style2D)
18 18
	 */
19 19
	public void draw(Graphics2D g, ViewPort vp, Style2D symbol) {
20 20
	}
21 21

  
22 22
	/**
23
	 * @see com.iver.cit.gvsig.fmap.core.FGeometry#toJTSGeometry()
23
	 * @see com.iver.cit.gvsig.fmap.core.IGeometry#toJTSGeometry()
24 24
	 */
25 25
	public Geometry toJTSGeometry() {
26 26
		return null;
27 27
	}
28 28

  
29 29
	/**
30
	 * @see com.iver.cit.gvsig.fmap.core.FGeometry#createLabels(int, boolean)
30
	 * @see com.iver.cit.gvsig.fmap.core.IGeometry#createLabels(int, boolean)
31 31
	 */
32
	public FGeometry[] createLabels(int position, boolean duplicates) {
32
	public IGeometry[] createLabels(int position, boolean duplicates) {
33 33
		return null;
34 34
	}
35 35

  
36 36
	/**
37
	 * @see com.iver.cit.gvsig.fmap.core.FGeometry#intersects(java.awt.geom.Rectangle2D)
37
	 * @see com.iver.cit.gvsig.fmap.core.IGeometry#intersects(java.awt.geom.Rectangle2D)
38 38
	 */
39 39
	public boolean intersects(Rectangle2D r) {
40 40
		return false;
41 41
	}
42 42

  
43 43
	/**
44
	 * @see com.iver.cit.gvsig.fmap.core.FGeometry#getBounds2D()
44
	 * @see com.iver.cit.gvsig.fmap.core.IGeometry#getBounds2D()
45 45
	 */
46 46
	public Rectangle2D getBounds2D() {
47 47
		return null;

Also available in: Unified diff