java.lang.Objectorg.apache.commons.digester.Rule
org.apache.commons.digester.SetRootRule
Rule implementation that calls a method on the root object on the stack,
passing the top object (child) as an argument.
It is important to remember that this rule acts on end.
This rule now supports more flexible method matching by default. It is possible that this may break (some) code written against release 1.1.1 or earlier. See #isExactMatch() for more details.
| Field Summary | ||
|---|---|---|
| protected String | methodName | The method name to call on the parent object. |
| protected String | paramType | The Java class name of the parameter type expected by the method. |
| protected boolean | useExactMatch | Should we use exact matching. Default is no. |
| Fields inherited from org.apache.commons.digester.Rule: |
|---|
| digester, namespaceURI |
| Constructor: |
|---|
|
|
|
|
| Method from org.apache.commons.digester.SetRootRule Summary: |
|---|
| end, isExactMatch, setExactMatch, toString |
| Methods from org.apache.commons.digester.Rule: |
|---|
| begin, begin, body, body, end, end, finish, getDigester, getNamespaceURI, setDigester, setNamespaceURI |
| Methods from java.lang.Object: |
|---|
| equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from org.apache.commons.digester.SetRootRule Detail: |
|---|
|
Is exact matching being used. This rule uses When exact matching is disabled, The default setting is to disable exact matches. |
Set whether exact matching is enabled. See #isExactMatch() . |
|