duftler 01/11/12 11:30:44
Modified: java/src/org/apache/soap/encoding SOAPMappingRegistry.java
Log:
Added a getParent() method to allow the registry tree to be walked-up.
Revision Changes Path
1.26 +8 -0
xml-soap/java/src/org/apache/soap/encoding/SOAPMappingRegistry.java
Index: SOAPMappingRegistry.java
===================================================================
RCS file:
/home/cvs/xml-soap/java/src/org/apache/soap/encoding/SOAPMappingRegistry.java,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- SOAPMappingRegistry.java 2001/11/10 02:28:10 1.25
+++ SOAPMappingRegistry.java 2001/11/12 19:30:43 1.26
@@ -427,6 +427,14 @@
}
/**
+ * Returns the "parent" registry, if there is one. Otherwise,
+ * returns null.
+ */
+ public SOAPMappingRegistry getParent () {
+ return parent;
+ }
+
+ /**
* Initialize myself with all the built-in default stuff. If schemaURI
* is not recognized, defaults to 2001 schema URI.
*/