Revision 6631 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/rendering/NullUniqueValue.java

View differences:

NullUniqueValue.java
1 1
package com.iver.cit.gvsig.fmap.rendering;
2 2

  
3
import java.sql.Types;
4

  
3 5
import com.hardcode.gdbms.engine.values.NullValue;
4 6

  
5 7

  
......
10 12
 * @author Vicente Caballero Navarro
11 13
 */
12 14
public class NullUniqueValue extends NullValue {
15
	public int getSQLType() {
16
		return Types.OTHER;
17
	}
18

  
13 19
	public String toString() {
14
		return "Resto de Valores";
20
		return "Default";
15 21
	}
16 22
}

Also available in: Unified diff