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

template.NumericFieldPushTemplate.vsl Maven / Gradle / Ivy

There is a newer version: 2.10.50
Show newest version
## Velocity Template.
package ${functionPackage};
#foreach( $import in $imports)
import $import;
#end

/**
 * generated NumericValuePush
 * target class  : ${targetClass}
 * target method : ${targetMethod}
 * @author Greg Higgins
 */
public final class ${functionClass}  extends NumericValuePush<${targetClass}>{

    @Override
    @OnEvent
    public void pushNumericValue(){
        if(pushUpdate){
            target.${targetMethod}((${parameterClass})source.${sourceMethod}());
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy