| java.lang.Object | |
| ↳ | org.springframework.util.xml.SimpleNamespaceContext |
Simple javax.xml.namespace.NamespaceContext implementation. Follows the standard
NamespaceContext contract, and is loadable via a java.util.Map or
java.util.Properties object
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Binds the given namespace as default namespace.
| |||||||||||
Binds the given prefix to the given namespace.
| |||||||||||
Removes all declared prefixes.
| |||||||||||
Returns all declared prefixes.
| |||||||||||
Removes the given prefix from this context.
| |||||||||||
Sets the bindings for this namespace context.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
javax.xml.namespace.NamespaceContext
| |||||||||||
Binds the given namespace as default namespace.
| namespaceUri | the namespace uri |
|---|
Binds the given prefix to the given namespace.
| prefix | the namespace prefix |
|---|---|
| namespaceUri | the namespace uri |
Returns all declared prefixes.
Removes the given prefix from this context.
| prefix | the prefix to be removed |
|---|
Sets the bindings for this namespace context. The supplied map must consist of string key value pairs.
| bindings | the bindings |
|---|