private class SetNestedPropertiesRule.AnyChildRule extends Rule
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
currChildElementName |
private java.lang.String |
currChildNamespaceURI |
digester, namespaceURI
Modifier | Constructor and Description |
---|---|
private |
AnyChildRule() |
Modifier and Type | Method and Description |
---|---|
void |
begin(java.lang.String namespaceURI,
java.lang.String name,
org.xml.sax.Attributes attributes)
This method is called when the beginning of a matching XML element
is encountered.
|
void |
body(java.lang.String value)
This method is called when the body of a matching XML element
is encountered.
|
void |
end(java.lang.String namespace,
java.lang.String name)
This method is called when the end of a matching XML element
is encountered.
|
begin, body, end, finish, getDigester, getNamespaceURI, setDigester, setNamespaceURI
private java.lang.String currChildNamespaceURI
private java.lang.String currChildElementName
public void begin(java.lang.String namespaceURI, java.lang.String name, org.xml.sax.Attributes attributes) throws java.lang.Exception
Rule
begin
without the
namespace
and name
parameters, to retain
backwards compatibility.begin
in class Rule
namespaceURI
- the namespace URI of the matching element, or an
empty string if the parser is not namespace aware or the element has
no namespacename
- the local name if the parser is namespace aware, or just
the element name otherwiseattributes
- The attribute list of this elementjava.lang.Exception
public void body(java.lang.String value) throws java.lang.Exception
Rule
public void end(java.lang.String namespace, java.lang.String name) throws java.lang.Exception
Rule
end
without the
namespace
and name
parameters, to retain
backwards compatibility.end
in class Rule
namespace
- the namespace URI of the matching element, or an
empty string if the parser is not namespace aware or the element has
no namespacename
- the local name if the parser is namespace aware, or just
the element name otherwisejava.lang.Exception
Copyright 2001-2005 The Apache Software Foundation.