Revision 33053 branches/v2_0_0_prep/libraries/libFMap_dalfile/src-test/org/gvsig/fmap/dal/store/dbf/JoinTransform.java

View differences:

JoinTransform.java
262 262

  
263 263
		private String attribute;
264 264
		private Object value;
265
		private String cql;
265
		private String sql;
266 266
		private EvaluatorFieldsInfo info = null;
267 267

  
268 268
		//		private int attributeIndex;
......
277 277

  
278 278
		public void updateValue(Object value) {
279 279
			this.value = value;
280
			this.cql = this.attribute + "= '" + this.value + "'";
280
			this.sql = this.attribute + "= '" + this.value + "'";
281 281
			this.info = new EvaluatorFieldsInfo();
282 282
			this.info.addMatchFieldValue(this.attribute, value);
283 283
		}
......
290 290
			return new Boolean(curValue.equals(value));
291 291
		}
292 292

  
293
		public String getCQL() {
294
			return this.cql;
293
		public String getSQL() {
294
			return this.sql;
295 295
		}
296 296

  
297 297
		public String getDescription() {

Also available in: Unified diff