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


@Target(value=TYPE)
@Retention(value=RUNTIME)
public @interface FaceletValidator

Mark a class to be deployed in facelets as a validator

Author:
Andrew Robinson (andrew)

Required Element Summary
 java.lang.String id
          Validator ID
 java.lang.String namespace
          Namespace to add the validator to
 java.lang.String tagName
          Tag name
 
Optional Element Summary
 java.lang.Class<? extends com.sun.facelets.tag.TagHandler> handlerClass
          (Optional) facelets tag handler class for this validator
 RegisterPriority registerWithFaces
          (Optional) Set how this validator will be registered with the facelet context application.
 

Element Detail

namespace

public abstract java.lang.String namespace
Namespace to add the validator to


tagName

public abstract java.lang.String tagName
Tag name


id

public abstract java.lang.String id
Validator ID

handlerClass

public abstract java.lang.Class<? extends com.sun.facelets.tag.TagHandler> handlerClass
(Optional) facelets tag handler class for this validator

Default:
com.sun.facelets.tag.TagHandler.class

registerWithFaces

public abstract RegisterPriority registerWithFaces
(Optional) Set how this validator will be registered with the facelet context application. Defaults to registering if the validator id is not already registered

Default:
net.sf.jsfcomp.facelets.deploy.RegisterPriority.DEFAULT


Copyright © 2007-2008. All Rights Reserved.