com.feilong.lib.digester3.xmlrules.SetNextRule 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.
The newest version!
package com.feilong.lib.digester3.xmlrules;
import com.feilong.lib.digester3.binder.LinkedRuleBuilder;
import com.feilong.lib.digester3.binder.RulesBinder;
import com.feilong.lib.digester3.binder.SetNextBuilder;
/**
*
*/
final class SetNextRule extends AbstractXmlMethodRule{
/**
* @param targetRulesBinder
* @param patternStack
*/
public SetNextRule(RulesBinder targetRulesBinder, PatternStack patternStack){
super(targetRulesBinder, patternStack);
}
/**
* {@inheritDoc}
*/
@Override
protected void bindRule(LinkedRuleBuilder linkedRuleBuilder,String methodName,String paramType,boolean exactMatch,boolean fireOnBegin){
SetNextBuilder builder = linkedRuleBuilder.setNext(methodName);
if (paramType != null && paramType.length() > 0){
builder.withParameterType(paramType);
}
builder.useExactMatch(exactMatch);
builder.fireOnBegin(fireOnBegin);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy