Revision 23021 trunk/libraries/libGeocoding/src/org/gvsig/geocoding/patterns/Jdbc.java

View differences:

Jdbc.java
154 154
    }    
155 155

  
156 156

  
157
	public void getstate(IStorage arg0) {
158
		// TODO Auto-generated method stub
159
		
157
	public void getstate(IStorage state) {
158
		state.setTheClass(this);
159
		state.put("server", this._server);
160
		state.put("table", this._table);
161
		state.put("database", this._database);
162
		state.put("user", this._user);
163

  
160 164
	}
161 165

  
166
	public void setstate(IStorage state) {
167
		this._server = (String) state.get("server");
168
		this._table = (String) state.get("table");
169
		this._database = (String) state.get("database");
170
		this._user = (String) state.get("user");
162 171

  
163
	public void setstate(IStorage arg0) {
164
		// TODO Auto-generated method stub
165
		
166 172
	}
167 173

  
168 174
}

Also available in: Unified diff