Revision 9233 trunk/libraries/libRemoteServices/src/org/gvsig/remoteClient/wfs/WFSStatus.java

View differences:

WFSStatus.java
49 49
 *
50 50
 * $Id$
51 51
 * $Log$
52
 * Revision 1.4  2006-10-10 12:52:28  jorpiell
52
 * Revision 1.5  2006-12-11 11:02:24  ppiqueras
53
 * Corregido bug -> que se mantenga la frase de filtrado
54
 *
55
 * Revision 1.4  2006/10/10 12:52:28  jorpiell
53 56
 * Soporte para features complejas.
54 57
 *
55 58
 * Revision 1.3  2006/06/14 07:54:18  jorpiell
......
76 79
	private int timeout = 10000;
77 80
	private int buffer = 100;	
78 81
	private String filterQuery = null;
82
	private String filterVisualText = null;
79 83
	
80 84
	public WFSStatus(String featureName){
81 85
		this.featureName = featureName;
......
222 226
	public void setFilterQuery(String filterQuery) {
223 227
		this.filterQuery = filterQuery;
224 228
	}
229
	
230
	/**
231
	 * Returns the text of filtering that user sees in interface
232
	 * 
233
	 * @return An String (in WFS-Visual-Filter-Query format)
234
	 */
235
	public String getFilterVisualText() {
236
		return filterVisualText;
237
	}
238

  
239
	/**
240
	 * Sets the text of filtering that user will see in interface.
241
	 * 
242
	 * @param filterVisualText An String (that must have a WFS-Visual-Filter-Query format)
243
	 */
244
	public void setFilterVisualText(String _filterVisualText) {
245
		this.filterVisualText = _filterVisualText;
246
	}
225 247
}

Also available in: Unified diff