You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by re...@apache.org on 2009/04/30 14:24:59 UTC

svn commit: r770198 - /jackrabbit/trunk/jackrabbit-spi-commons/src/main/java/org/apache/jackrabbit/spi/commons/value/QValueValue.java

Author: reschke
Date: Thu Apr 30 12:24:59 2009
New Revision: 770198

URL: http://svn.apache.org/viewvc?rev=770198&view=rev
Log:
JCR-1609: add stub for new BigDecimal support

Modified:
    jackrabbit/trunk/jackrabbit-spi-commons/src/main/java/org/apache/jackrabbit/spi/commons/value/QValueValue.java

Modified: jackrabbit/trunk/jackrabbit-spi-commons/src/main/java/org/apache/jackrabbit/spi/commons/value/QValueValue.java
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-spi-commons/src/main/java/org/apache/jackrabbit/spi/commons/value/QValueValue.java?rev=770198&r1=770197&r2=770198&view=diff
==============================================================================
--- jackrabbit/trunk/jackrabbit-spi-commons/src/main/java/org/apache/jackrabbit/spi/commons/value/QValueValue.java (original)
+++ jackrabbit/trunk/jackrabbit-spi-commons/src/main/java/org/apache/jackrabbit/spi/commons/value/QValueValue.java Thu Apr 30 12:24:59 2009
@@ -90,6 +90,11 @@
         }
     }
 
+    public BigDecimal getDecimal() throws ValueFormatException, IllegalStateException, RepositoryException {
+        // TODO
+        throw new RuntimeException("Not implemented yet, see JCR-1609");
+    }
+
     public Binary getBinary() throws RepositoryException {
         // TODO
         throw new RuntimeException("Not implemented yet, see JCR-2056");
@@ -218,5 +223,4 @@
         }
         state = STATE_VALUE_CONSUMED;
     }
-
 }