Revision 44669 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.dal/org.gvsig.fmap.dal.api/src/main/java/org/gvsig/fmap/dal/feature/EditableFeature.java

View differences:

EditableFeature.java
23 23
 */
24 24
package org.gvsig.fmap.dal.feature;
25 25

  
26
import java.math.BigDecimal;
26 27
import java.util.Date;
27 28
import javax.json.JsonObject;
28 29

  
......
147 148
	public void setDouble(int index, double value);
148 149

  
149 150
	/**
151
	 * Sets the value of an attribute of type BigDecimal, given its name
152
	 * @param name
153
	 * 			attribute's name
154
	 * @param value
155
	 *  		value to set
156
	 */
157
	public void setDecimal(String name, BigDecimal value);
158

  
159
	/**
160
	 * Sets the value of an attribute of type BigDecimal, given its index
161
	 * @param index
162
	 * 			attribute's index
163
	 * @param value
164
	 *  		value to set
165
	 */
166
	public void setDecimal(int index, BigDecimal value);
167

  
168
	/**
150 169
	 * Sets the value of an attribute of type date, given its name
151 170
	 * @param name
152 171
	 * 			attribute's name

Also available in: Unified diff