Revision 11194 branches/v10/libraries/libFMap/src/com/iver/cit/gvsig/fmap/drivers/VectorialDatabaseDriver.java

View differences:

VectorialDatabaseDriver.java
56 56
     * @param fields (Todos los campos, el primero ha de ser el de las geometr?as
57 57
     * @param whereClause
58 58
     * @param id_FID_field El identificador del campo que contiene una clave ?nica. 1=> primer campo, 2 => segundo campo, etc
59
     * 
59
     *
60 60
     */
61 61
    // public void setData(Connection conn, String tableName, String fields, String whereClause, int id_FID_field);
62 62
    public Rectangle2D getFullExtent();
63 63
    public int getShapeType();
64
    
64

  
65 65
    public IFeatureIterator getFeatureIterator(Rectangle2D r, String strEPSG) throws DriverException;
66 66
    public IFeatureIterator getFeatureIterator(Rectangle2D r, String strEPSG, String[] alphaNumericFieldsNeeded) throws DriverException;
67 67
	public String[] getFields();
......
77 77
     */
78 78
    public int getRowIndexByFID(IFeature FID);
79 79
    public String getGeometryField(String fieldName);
80
    
80

  
81 81
    public XMLEntity getXMLEntity();
82 82
    /**
83
     * Para evitar que una clase no se pueda instanciar, 
83
     * Para evitar que una clase no se pueda instanciar,
84 84
     * el setXMLEntity deber?a devolver una referencia
85 85
     * a la clase que crea. Ya vorem.
86 86
     */
87 87
    public void setXMLEntity(XMLEntity xml) throws XMLException;
88
 
88

  
89 89
    /**
90 90
     * @return information about catalog, fields, tablename, etc
91 91
     */
92 92
    public DBLayerDefinition getLyrDef();
93
    
93

  
94 94
    /**
95 95
     * This method is called by FLyrVect when its goig to be removed from the
96 96
     * view. The driver can then do what it has to do.
97 97
     *
98 98
     */
99 99
	public void remove();
100
	public void load() throws DriverException;
100 101

  
101 102
}

Also available in: Unified diff