Revision 5441 org.gvsig.raster/branches/org.gvsig.raster.2.4/org.gvsig.raster/org.gvsig.raster.lib/org.gvsig.raster.lib.buffer/org.gvsig.raster.lib.buffer.api/src/main/java/org/gvsig/raster/lib/buffer/api/VectorialROI.java

View differences:

VectorialROI.java
42 42
    public void addGeometry(Geometry geometry);
43 43

  
44 44
    /**
45
     * Deletes a geometry with the <code>index</code> selected
45
     * Removes a geometry with the <code>index</code> selected
46 46
     *
47 47
     * @param index
48 48
     */
49
    public void deleteGeometry(int index);
49
    public void removeGeometry(int index);
50 50

  
51 51

  
52 52
    /**
53
     * Gets the list of geometries of this ROI
53
     * Gets a unmodifiable list of geometries of this ROI
54 54
     *
55 55
     * @return
56 56
     */
57 57
    public List<Geometry> getGeometries();
58 58

  
59
    /**
60
     * @return
61
     */
62
    public int getGeometryCount();
59 63

  
64

  
60 65
}

Also available in: Unified diff