Update of /var/cvs/src/org/mmbase/bridge
In directory james.mmbase.org:/tmp/cvs-serv29264
Modified Files:
Node.java
Log Message:
MMB-1736
See also: http://cvs.mmbase.org/viewcvs/src/org/mmbase/bridge
See also: http://www.mmbase.org/jira/browse/MMB-1736
Index: Node.java
===================================================================
RCS file: /var/cvs/src/org/mmbase/bridge/Node.java,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -b -r1.79 -r1.80
--- Node.java 22 Sep 2008 17:00:13 -0000 1.79
+++ Node.java 1 Dec 2008 22:41:06 -0000 1.80
@@ -21,7 +21,7 @@
*
* @author Rob Vermeulen
* @author Pierre van Rooden
- * @version $Id: Node.java,v 1.79 2008/09/22 17:00:13 michiel Exp $
+ * @version $Id: Node.java,v 1.80 2008/12/01 22:41:06 michiel Exp $
*/
public interface Node extends Comparable<Node> {
@@ -232,6 +232,19 @@
public void setDateValue(String fieldName, Date value);
+
+ /**
+ * Sets the value of the specified field using a <code>BigDecimal</code>.
+ * This change will not be visible to the cloud until the commit method is
+ * called.
+ *
+ * @param fieldName the name of the field to be updated
+ * @param value the new value for the given field
+ * @since MMBase-1.9.1
+ */
+ public void setDecimalValue(String fieldName, java.math.BigDecimal value);
+
+
/**
* Sets the value of the specified field using a <code>List</code>.
* This change will not be visible to the cloud until the commit method is
@@ -468,6 +481,15 @@
/**
* @param fieldName the name of the field to be returned
* @return the value of the specified field
+ * @since MMBase-1.9.1
+ * @throw IllegalArgumentException if mmbase is 'in development' (i.e.
'strict' mode) and the
+ * field does not exist.
+ */
+ public java.math.BigDecimal getDecimalValue(String fieldName);
+
+ /**
+ * @param fieldName the name of the field to be returned
+ * @return the value of the specified field
* @throw IllegalArgumentException if mmbase is 'in development' (i.e.
'strict' mode) and the
* field does not exist.
* not yet working
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs