Revision 42309 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.geometry/org.gvsig.fmap.geometry.api/src/main/java/org/gvsig/fmap/geom/primitive/PointGeometryType.java

View differences:

PointGeometryType.java
27 27

  
28 28
/**
29 29
 * Geometry type for point geometries.
30
 * 
30
 *
31 31
 * @author gvSIG Team
32 32
 */
33
/**
34
 *
35
 * This class is deprecated.
36
 * Use GeometryType.
37
 *
38
 * @deprecated use GeometryType
39
 */
33 40
public interface PointGeometryType extends GeometryType {
34 41

  
35 42
    /**
36
     * Creates a new point object 
43
     * Creates a new point object
37 44
     * @param x the x coordinate of the point
38 45
     * @param y the y coordinate of the point
39 46
     * @return the new point
40 47
     */
41 48
    Point createPoint(double x, double y);
42
    
49

  
43 50
    /**
44
     * Creates a new point object 
51
     * Creates a new point object
45 52
     * @param coordinates the coordinates of the point
46 53
     * @return the new point
47 54
     */

Also available in: Unified diff