| org.objectweb.jonas_lib.deployment.rules.QNameRule
All known Subclasses: org.objectweb.jonas_lib.deployment.rules.AnonymousQNameRule,
QNameRule | public class QNameRule extends Rule (Code) | | Rule that create a new QName object
author: Florent Benoit |
Method Summary | |
public void | body(String namespace, String name, String text) This method is called when the body of a matching XML element is
encountered. |
body | public void body(String namespace, String name, String text)(Code) | | This method is called when the body of a matching XML element is
encountered. If the element has no body, this method is not called at
all. The default implementation delegates to the deprecated method
body without the namespace and name parameters, to retain backwards
compatibility.
Parameters: namespace - the namespace URI of the matching element,or an empty string if the parser is not namespaceaware or the element has no namespace Parameters: name - the local name if the parser is namespace aware,or just the element name otherwise Parameters: text - The text of the body of this element |
|
|