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

META-INF.templates.behavior.ftl Maven / Gradle / Ivy

The newest version!
<#include "_copyright.ftl">

package ${targetClass.package};

import javax.annotation.Generated;
import javax.faces.component.PartialStateHolder;
import javax.faces.component.behavior.Behavior;
import javax.faces.context.FacesContext;
import javax.faces.event.BehaviorEvent;
import javax.faces.el.ValueBinding;
<#include "_attributes_import.ftl">

/**
 * ${description?if_exists}
 **/
@Generated({"RichFaces CDK", "4.5.0-SNAPSHOT"})
public class ${targetClass.simpleName} extends ${baseClass} implements Behavior, PartialStateHolder
<#if (implemented?size > 0)>, <@util.concat seq=implemented ; interface>${interface.simpleName} {

    <#if rendererType?exists >
    public String getRendererType() {
        return "${rendererType}";
    }
    
    <#include "_attributes-old.ftl">

    <#include "_state-holder-methods-old.ftl">
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy