Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / layers / layerOperations / AlphanumericData.java @ 1005

History | View | Annotate | Download (681 Bytes)

1
package com.iver.cit.gvsig.fmap.layers.layerOperations;
2

    
3
import com.iver.cit.gvsig.fmap.DriverException;
4
import com.iver.cit.gvsig.fmap.layers.SelectableDataSource;
5

    
6

    
7
/**
8
 * Interfaz que implementan todas las capas que tienen una tabla asociada
9
 */
10
public interface AlphanumericData {
11
        /**
12
         * Obtiene una referencia a la tabla asociada a la capa
13
         *
14
         * @return Tabla asociada
15
         *
16
         * @throws DriverException
17
         */
18
        SelectableDataSource getRecordset() throws DriverException;
19

    
20
        /**
21
         * Cambia el nombre de la tabla en el GDBMS
22
         *
23
         * @param newName DOCUMENT ME!
24
         *
25
         * @throws DriverException DOCUMENT ME!
26
         */
27
        void changeRecordsetName(String newName) throws DriverException;
28
}