org.japano.metadata.annotation
Annotation Type JapanoTag


@Target(value=TYPE)
@Documented
@Retention(value=SOURCE)
public @interface JapanoTag

Used to mark a subclass of PageNode as active tag.

Version:
$Id: JapanoTag.java,v 1.7 2005/09/27 21:30:51 fforw Exp $ SourceForge.net Logo
Author:
Sven Helmberger ( sven dot helmberger at gmx dot de )

Optional Element Summary
 java.lang.String bodyContent
          Declares which body is allowed for that tag.
 java.lang.String library
          Library to put the tag into.
 java.lang.String name
          Name of the tag to create for this class.
 

name

public abstract java.lang.String name
Name of the tag to create for this class. If not set, the name will be derived from the class name.

Default:
"[unset]"

library

public abstract java.lang.String library
Library to put the tag into.

Default:
"[unset]"

bodyContent

public abstract java.lang.String bodyContent
Declares which body is allowed for that tag.
JSP
Body is JSP
empty
Tag can't have a body
tagdependent
Tag has tag dependend content.
scriptless
Tag body contains JSP without expressions or scriplets.

Default:
"JSP"