Index: org/exolab/castor/xml/Unmarshaller.java =================================================================== --- org/exolab/castor/xml/Unmarshaller.java (Revision 6588) +++ org/exolab/castor/xml/Unmarshaller.java (Arbeitskopie) @@ -890,5 +890,18 @@ public void setObjectFactory(ObjectFactory objectFactory) { this._objectFactory = objectFactory; } // -- setObjectFactory + + /** + * Returns the value of the given Castor XML-specific property. + * @param name Qualified name of the CASTOR XML-specific property. + * @return The current value of the given property. + */ + public String getProperty(final String name) { + return _config.getProperties().getProperty(name); + } + + public void setProperty(final String name, final String value) { + _config.getProperties().setProperty(name, value); + } } //-- Unmarshaller