public class SetPropertiesRule extends Rule
Rule implementation that sets properties on the object at the top of the stack, based on attributes with corresponding names.
This rule supports custom mapping of attribute names to property names. The default mapping for particular attributes
can be overridden by using SetPropertiesRule(String[] attributeNames, String[] propertyNames)
. This allows
attributes to be mapped to properties with different names. Certain attributes can also be marked to be ignored.
Type | Property and Description |
---|---|
boolean |
isIgnoreMissing
Are attributes found in the xml without matching properties to be ignored?
|
Constructor and Description |
---|
SetPropertiesRule()
Base constructor.
|
SetPropertiesRule(Map<String,String> aliases)
Constructor allows attribute->property mapping to be overriden.
|
SetPropertiesRule(String[] attributeNames,
String[] propertyNames)
Constructor allows attribute->property mapping to be overriden.
|
SetPropertiesRule(String attributeName,
String propertyName)
Convenience constructor overrides the mapping for just one property.
|
Modifier and Type | Method and Description |
---|---|
void |
addAlias(String attributeName,
String propertyName)
Add an additional attribute name to property name mapping.
|
void |
begin(String namespace,
String name,
Attributes attributes)
This method is called when the beginning of a matching XML element is encountered.
|
boolean |
isIgnoreMissingProperty()
Are attributes found in the xml without matching properties to be ignored?
|
void |
setIgnoreMissingProperty(boolean ignoreMissingProperty)
Sets whether attributes found in the xml without matching properties should be ignored.
|
String |
toString() |
body, end, finish, getDigester, getNamespaceURI, setDigester, setNamespaceURI
Are attributes found in the xml without matching properties to be ignored?
If false, the parsing will interrupt with an NoSuchMethodException
if a property specified in the
XML is not found. The default is true.
public SetPropertiesRule()
public SetPropertiesRule(String attributeName, String propertyName)
Convenience constructor overrides the mapping for just one property.
For details about how this works, see SetPropertiesRule(String[] attributeNames, String[] propertyNames)
.
attributeName
- map this attributepropertyName
- to a property with this namepublic SetPropertiesRule(String[] attributeNames, String[] propertyNames)
Constructor allows attribute->property mapping to be overriden.
Two arrays are passed in. One contains the attribute names and the other the property names. The attribute name / property name pairs are match by position In order words, the first string in the attribute name list matches to the first string in the property name list and so on.
If a property name is null or the attribute name has no matching property name, then this indicates that the attibute should be ignored.
The following constructs a rule that maps the alt-city
attribute to the city
property
and the alt-state
to the state
property. All other attributes are mapped as usual using
exact name matching.
SetPropertiesRule(
new String[] {"alt-city", "alt-state"},
new String[] {"city", "state"});
The following constructs a rule that maps the class
attribute to the className
property. The attribute ignore-me
is not mapped. All other attributes are mapped as usual using
exact name matching.
SetPropertiesRule(
new String[] {"class", "ignore-me"},
new String[] {"className"});
attributeNames
- names of attributes to mappropertyNames
- names of properties mapped topublic SetPropertiesRule(Map<String,String> aliases)
aliases
- attribute->property mappingpublic void begin(String namespace, String name, Attributes attributes) throws Exception
begin
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 otherwiseattributes
- The attribute list of this elementException
- if any error occurspublic void addAlias(String attributeName, String propertyName)
attributeName
- the attribute name has to be mappedpropertyName
- the target property namepublic boolean isIgnoreMissingProperty()
Are attributes found in the xml without matching properties to be ignored?
If false, the parsing will interrupt with an NoSuchMethodException
if a property specified in the
XML is not found. The default is true.
public void setIgnoreMissingProperty(boolean ignoreMissingProperty)
NoSuchMethodException
if an unmatched attribute is found. This allows to trap
misspellings in the XML file.ignoreMissingProperty
- false to stop the parsing on unmatched attributes.Copyright © 2001-2013 The Apache Software Foundation. All Rights Reserved.