Revision 32668 branches/v2_0_0_prep/libraries/org.gvsig.arcims/src/org/gvsig/remoteclient/arcims/styling/renderers/RangeValueMap.java

View differences:

RangeValueMap.java
32 32
package org.gvsig.remoteclient.arcims.styling.renderers;
33 33

  
34 34
import org.gvsig.remoteclient.arcims.styling.symbols.IArcIMSSymbol;
35
import org.gvsig.remoteclient.arcims.styling.symbols.SymbolUtils;
35
import org.gvsig.remoteclient.arcims.styling.symbols.ArcImsSymbolUtils;
36 36

  
37 37

  
38 38
/**
......
68 68
    public String toString() {
69 69
        String param = "";
70 70

  
71
        if (SymbolUtils.isVoid(lower)) {
71
        if (ArcImsSymbolUtils.isVoid(lower)) {
72 72
            param += (" lower=\"" + lower + "\"");
73 73
        }
74 74

  
75
        if (SymbolUtils.isVoid(upper)) {
75
        if (ArcImsSymbolUtils.isVoid(upper)) {
76 76
            param += (" upper=\"" + upper + "\"");
77 77
        }
78 78

  
79
        if (SymbolUtils.isVoid(equality)) {
79
        if (ArcImsSymbolUtils.isVoid(equality)) {
80 80
            param += (" equality=\"" + equality + "\"");
81 81
        }
82 82

  
83
        if (SymbolUtils.isVoid(label)) {
83
        if (ArcImsSymbolUtils.isVoid(label)) {
84 84
            param += (" label=\"" + label + "\"");
85 85
        }
86 86

  

Also available in: Unified diff