You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xmlbeans.apache.org by ra...@apache.org on 2008/06/21 01:27:25 UTC

svn commit: r670094 - in /xmlbeans/trunk/src/typeimpl/org/apache/xmlbeans/impl/values: JavaGDurationHolderEx.java XmlObjectBase.java

Author: radup
Date: Fri Jun 20 16:27:25 2008
New Revision: 670094

URL: http://svn.apache.org/viewvc?rev=670094&view=rev
Log:
Implement SimpleValue.getGDurationValue()

Modified:
    xmlbeans/trunk/src/typeimpl/org/apache/xmlbeans/impl/values/JavaGDurationHolderEx.java
    xmlbeans/trunk/src/typeimpl/org/apache/xmlbeans/impl/values/XmlObjectBase.java

Modified: xmlbeans/trunk/src/typeimpl/org/apache/xmlbeans/impl/values/JavaGDurationHolderEx.java
URL: http://svn.apache.org/viewvc/xmlbeans/trunk/src/typeimpl/org/apache/xmlbeans/impl/values/JavaGDurationHolderEx.java?rev=670094&r1=670093&r2=670094&view=diff
==============================================================================
--- xmlbeans/trunk/src/typeimpl/org/apache/xmlbeans/impl/values/JavaGDurationHolderEx.java (original)
+++ xmlbeans/trunk/src/typeimpl/org/apache/xmlbeans/impl/values/JavaGDurationHolderEx.java Fri Jun 20 16:27:25 2008
@@ -66,7 +66,7 @@
         _value = null;
     }
 
-    public GDuration gDurationValue()
+    public GDuration getGDurationValue()
     {
         check_dated();
 

Modified: xmlbeans/trunk/src/typeimpl/org/apache/xmlbeans/impl/values/XmlObjectBase.java
URL: http://svn.apache.org/viewvc/xmlbeans/trunk/src/typeimpl/org/apache/xmlbeans/impl/values/XmlObjectBase.java?rev=670094&r1=670093&r2=670094&view=diff
==============================================================================
--- xmlbeans/trunk/src/typeimpl/org/apache/xmlbeans/impl/values/XmlObjectBase.java (original)
+++ xmlbeans/trunk/src/typeimpl/org/apache/xmlbeans/impl/values/XmlObjectBase.java Fri Jun 20 16:27:25 2008
@@ -2137,7 +2137,7 @@
     protected void set_hex(byte[] b)
         { set_ByteArray(b); }
     protected void set_BigInteger(BigInteger v)
-        { set(new BigDecimal(v)); }
+        { set_BigDecimal(new BigDecimal(v)); }
     protected void set_BigDecimal(BigDecimal v)
         { throw new XmlValueNotSupportedException(XmlErrorCodes.EXCEPTION_VALUE_NOT_SUPPORTED_J2S,
             new Object[] {"numeric", getPrimitiveTypeName() }); }



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xmlbeans.apache.org
For additional commands, e-mail: commits-help@xmlbeans.apache.org