Revision 1691 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/drivers/VectorialFileDriver.java

View differences:

VectorialFileDriver.java
71 71
     */
72 72
    void close() throws IOException;
73 73

  
74
    /**
75
     * Obtiene el n?mero de geometr?as que contiene
76
     * la capa
77
     *
78
     * @return int
79
     *
80
     * @throws IOException Si se produce alg?n error
81
     */
82
    int getShapeCount() throws IOException;
83 74

  
84 75
    /**
85 76
     * M?todo invocado una s?la vez durante la ejecuci?n justo antes
......
101 92
     */
102 93
    boolean accept(File f);
103 94
    
95
    /**
96
     * Obtiene del fichero abierto en open la geometr?a index-?sima
97
     *
98
     * @param index ?ndice de la geometr?a que se quiere obtener
99
     *
100
     * @return IGeometry. Construida mediante llamadas a ShapeFactory
101
     *
102
     * @throws IOException Si se produce alg?n error
103
     */
104
    IGeometry getShape(int index) throws IOException;
105

  
104 106
    
107
    
105 108
}

Also available in: Unified diff