Revision 40789 branches/v02_desarrollo/libraries/sld/temp/org.gvsig.sldsupport.lib.api/src/main/java/org/gvsig/sldsupport/sld/filter/SLDFilter.java

View differences:

SLDFilter.java
2 2

  
3 3
public abstract class SLDFilter {
4 4
	
5
	protected SLDFilterOperator operator = null;
5 6
	protected boolean isElse = false;
6 7

  
7 8
	public SLDFilter(boolean is_else) {
......
17 18
		return isElse;
18 19
	}
19 20
	
20
	public abstract SLDFilterOperator getFilterOperator();
21
	public SLDFilterOperator getFilterOperator() {
22
		return operator;
23
	}
21 24
	
25
	public void setFilterOperator(SLDFilterOperator ope) {
26
		operator = ope;
27
	}
28
	
22 29
	/**
23 30
	 * This causes the reset of the SLDFilterOperator
24 31
	 * 

Also available in: Unified diff