All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.feilong.lib.digester3.xmlrules.BeanPropertySetterRule Maven / Gradle / Ivy

Go to download

feilong is a suite of core and expanded libraries that include utility classes, http, excel,cvs, io classes, and much much more.

There is a newer version: 4.0.8
Show newest version
package com.feilong.lib.digester3.xmlrules;

import org.xml.sax.Attributes;

import com.feilong.lib.digester3.binder.BeanPropertySetterBuilder;
import com.feilong.lib.digester3.binder.LinkedRuleBuilder;
import com.feilong.lib.digester3.binder.RulesBinder;

/**
 * 
 */
final class BeanPropertySetterRule extends AbstractXmlRule{

    public BeanPropertySetterRule(RulesBinder targetRulesBinder, PatternStack patternStack){
        super(targetRulesBinder, patternStack);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    protected void bindRule(LinkedRuleBuilder linkedRuleBuilder,Attributes attributes) throws Exception{
        BeanPropertySetterBuilder builder = linkedRuleBuilder.setBeanProperty().withName(attributes.getValue("propertyname"));

        int propertyNameFromAttributeIndex = attributes.getIndex("propertynameFromAttribute");
        if (propertyNameFromAttributeIndex >= 0){
            builder.extractPropertyNameFromAttribute(attributes.getValue(propertyNameFromAttributeIndex));
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy