Implementation of Bundle interface for XML resources. Represents a
single XML message bundle.
XML format for this resource bundle implementation is the following:
<catalogue xml:lang="en">
<message key="key1">Message <br/> Value 1</message>
<message key="key2">Message <br/> Value 1</message>
...
</catalogue>
Value can be any well formed XML snippet and it will be cached by the key specified
in the attribute key . Objects returned by this
Bundle implementation
are instances of the
ParamSaxBuffer class.
If value for a key is not present in this bundle, parent bundle will be queried.
author: Apache Cocoon Team version: $Id: XMLResourceBundle.java 433543 2006-08-22 06:22:54Z crossley $ |