net.sf.jsfcomp.facelets.deploy.annotations
Annotation Type FaceletElFunction


@Retention(value=RUNTIME)
@Target(value=METHOD)
public @interface FaceletElFunction

Marks the function to be included as an EL function for facelets

Author:
Andrew Robinson (andrew)

Optional Element Summary
 java.lang.String name
          Name to give the function.
 java.lang.String namespace
          The namespace to use.
 boolean visible
          If this function should be visible to the EL.
 

namespace

public abstract java.lang.String namespace
The namespace to use. Defaults to the value from the facelet function holder

Default:
""

name

public abstract java.lang.String name
Name to give the function. Defaults to the method name

Default:
""

visible

public abstract boolean visible
If this function should be visible to the EL. If implicit is specified on the FaceletFunctionHolder, setting this to false will hide the method

Default:
true


Copyright © 2007-2008. All Rights Reserved.