Revision 33053 branches/v2_0_0_prep/extensions/extDalTransformJoin/src/org/gvsig/app/join/dal/feature/JoinTransform.java

View differences:

JoinTransform.java
274 274

  
275 275
		private String attribute;
276 276
		private Object value;
277
		private String cql;
277
		private String sql;
278 278
		private EvaluatorFieldsInfo info = null;
279 279

  
280 280
		//		private int attributeIndex;
......
289 289

  
290 290
		public void updateValue(Object value) {
291 291
			this.value = value;
292
			this.cql = this.attribute + "= '" + this.value + "'";
292
			this.sql = this.attribute + "= '" + this.value + "'";
293 293
			this.info = new EvaluatorFieldsInfo();
294 294
			this.info.addMatchFieldValue(this.attribute, value);
295 295
		}
......
302 302
			return curValue.equals(value);
303 303
		}
304 304

  
305
		public String getCQL() {
306
			return this.cql;
305
		public String getSQL() {
306
			return this.sql;
307 307
		}
308 308

  
309 309
		public String getDescription() {

Also available in: Unified diff