Revision 3236 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/drivers/DBLayerDefinition.java

View differences:

DBLayerDefinition.java
54 54
    private String whereClause;
55 55
    private Rectangle2D workingArea;
56 56
    private String SRID_EPSG;
57
    private String classToInstantiate;
58
    
57 59
    // private int idFieldGeometry = -1;
58 60
    private int idFieldID = -1;
59 61
    
......
96 98
    public void setTableName(String tableName) {
97 99
        this.tableName = tableName;
98 100
    }
101
    /**
102
     * The returned string must contain " WHERE " clause
103
     * @return
104
     */
99 105
    public String getWhereClause() {
100 106
        return whereClause;
101 107
    }
......
155 161
    public void setSRID_EPSG(String srid_epsg) {
156 162
        SRID_EPSG = srid_epsg;
157 163
    }
164
    /**
165
     * @return Returns the classToInstantiate.
166
     */
167
    public String getClassToInstantiate() {
168
        return classToInstantiate;
169
    }
170
    /**
171
     * @param classToInstantiate The classToInstantiate to set.
172
     */
173
    public void setClassToInstantiate(String classToInstantiate) {
174
        this.classToInstantiate = classToInstantiate;
175
    }
158 176
}

Also available in: Unified diff