com.feilong.lib.digester3.xmlrules.SetPropertyRule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of feilong Show documentation
Show all versions of feilong Show documentation
feilong is a suite of core and expanded libraries that include utility classes, http, excel,cvs, io classes, and much much more.
package com.feilong.lib.digester3.xmlrules;
import org.xml.sax.Attributes;
import com.feilong.lib.digester3.binder.LinkedRuleBuilder;
import com.feilong.lib.digester3.binder.RulesBinder;
/**
*
*/
final class SetPropertyRule extends AbstractXmlRule{
public SetPropertyRule(RulesBinder targetRulesBinder, PatternStack patternStack){
super(targetRulesBinder, patternStack);
}
/**
* {@inheritDoc}
*/
@Override
protected void bindRule(LinkedRuleBuilder linkedRuleBuilder,Attributes attributes) throws Exception{
String name = attributes.getValue("name");
String value = attributes.getValue("value");
linkedRuleBuilder.setProperty(name).extractingValueFromAttribute(value);
}
}