@Retention(value=SOURCE) public @interface Tag
Defines Faces VDL ( Facelets,JSP )tag.
| Modifier and Type | Optional Element and Description |
|---|---|
String |
baseClass
Base class for generated tag handler. |
boolean |
generate
Flag indicates that special tag handler should be generated. |
String |
handler
Deprecated.
replaced by
handlerClass()
Tag handler class. Fully qualified class name of the generated or existing tag handler. For |
Class<?> |
handlerClass
Tag handler class. |
String |
name
Name of the JSF tag that creates target component. |
TagType |
type
Defines target View Description Language: JSP, Facelets, or both. |
public abstract String name
Name of the JSF tag that creates target component.
public abstract TagType type
Defines target View Description Language: JSP, Facelets, or both.
@Deprecated public abstract String handler
handlerClass()
Tag handler class. Fully qualified class name of the generated or existing tag handler. For TagType.Jsp it's
JspTag or, more likely, UIComponentTagBase instance. For facelets, it's TagHandler instance.
public abstract Class<?> handlerClass
Tag handler class. Fully qualified class name of the generated or existing tag handler. For TagType.Jsp it's
JspTag or, more likely, UIComponentTagBase instance. For facelets, it's TagHandler instance.
public abstract String baseClass
Base class for generated tag handler. Default value depends from type() attribute value.
public abstract boolean generate
Flag indicates that special tag handler should be generated.
Copyright © 2013 JBoss by Red Hat. All Rights Reserved.