You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by mr...@apache.org on 2010/04/05 21:33:30 UTC

svn commit: r930934 - /xerces/java/branches/xml-schema-1.1-dev/src/org/apache/xerces/impl/dv/xs/XSSimpleTypeDelegate.java

Author: mrglavas
Date: Mon Apr  5 19:33:30 2010
New Revision: 930934

URL: http://svn.apache.org/viewvc?rev=930934&view=rev
Log:
Adding an accessor method which returns the wrapped XSSimpleType.

Modified:
    xerces/java/branches/xml-schema-1.1-dev/src/org/apache/xerces/impl/dv/xs/XSSimpleTypeDelegate.java

Modified: xerces/java/branches/xml-schema-1.1-dev/src/org/apache/xerces/impl/dv/xs/XSSimpleTypeDelegate.java
URL: http://svn.apache.org/viewvc/xerces/java/branches/xml-schema-1.1-dev/src/org/apache/xerces/impl/dv/xs/XSSimpleTypeDelegate.java?rev=930934&r1=930933&r2=930934&view=diff
==============================================================================
--- xerces/java/branches/xml-schema-1.1-dev/src/org/apache/xerces/impl/dv/xs/XSSimpleTypeDelegate.java (original)
+++ xerces/java/branches/xml-schema-1.1-dev/src/org/apache/xerces/impl/dv/xs/XSSimpleTypeDelegate.java Mon Apr  5 19:33:30 2010
@@ -49,6 +49,10 @@ public class XSSimpleTypeDelegate
         }
         this.type = type;
     }
+    
+    public XSSimpleType getWrappedXSSimpleType() {
+        return type;
+    }
 
     public XSObjectList getAnnotations() {
         return type.getAnnotations();



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