com.feilong.lib.digester3.xmlrules.SetPropertiesAliasRule 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.Rule;
import com.feilong.lib.digester3.binder.SetPropertiesBuilder;
/**
*
*/
final class SetPropertiesAliasRule extends Rule{
/**
* {@inheritDoc}
*/
@Override
public void begin(String namespace,String name,Attributes attributes) throws Exception{
String attributeName = attributes.getValue("attr-name");
String propertyName = attributes.getValue("prop-name");
SetPropertiesBuilder builder = getDigester().peek();
builder.addAlias(attributeName).forProperty(propertyName);
}
}