| org.apache.commons.betwixt.digester.RuleSupport org.apache.commons.betwixt.digester.MappedPropertyRule org.apache.commons.betwixt.digester.ElementRule
Method Summary | |
public void | begin(String name, String namespace, Attributes attributes) Process the beginning of this element.
Parameters: attributes - The attribute list of this element throws: SAXException - 1. | protected void | configureDescriptor(ElementDescriptor elementDescriptor) Sets the Expression and Updater from a bean property name Uses the
default updater (from the standard java bean property). | protected void | configureDescriptor(ElementDescriptor elementDescriptor, String updateMethodName) Sets the Expression and Updater from a bean property name Allows a custom
updater to be passed in.
Parameters: elementDescriptor - configure this ElementDescriptor Parameters: updateMethodName - custom update method. | public void | end(String name, String namespace) Process the end of this element. | final public static void | setLog(Log newLog) |
ElementRule | public ElementRule()(Code) | | Base constructor
|
begin | public void begin(String name, String namespace, Attributes attributes) throws SAXException(Code) | | Process the beginning of this element.
Parameters: attributes - The attribute list of this element throws: SAXException - 1. If this tag's parent is not either an info or element tag.2. If the name attribute is not valid XML element name. 3. Ifthe name attribute is not present 4. If the class attributeis not a loadable (fully qualified) class name |
configureDescriptor | protected void configureDescriptor(ElementDescriptor elementDescriptor)(Code) | | Sets the Expression and Updater from a bean property name Uses the
default updater (from the standard java bean property).
Parameters: elementDescriptor - configure this ElementDescriptor since: 0.5 |
configureDescriptor | protected void configureDescriptor(ElementDescriptor elementDescriptor, String updateMethodName)(Code) | | Sets the Expression and Updater from a bean property name Allows a custom
updater to be passed in.
Parameters: elementDescriptor - configure this ElementDescriptor Parameters: updateMethodName - custom update method. If null, then use standard since: 0.5 |
setLog | final public static void setLog(Log newLog)(Code) | | Sets the log for this class
Parameters: newLog - the new Log implementation for this class to use since: 0.5 |
|
|