org.eclipse.jet.taglib
Interface EmptyTag
- All Superinterfaces:
- CustomTag
- All Known Subinterfaces:
- ConditionalTag, ContainerTag, IteratingTag
- All Known Implementing Classes:
- AbstractConditionalTag, AbstractContainerTag, AbstractEmptyTag, AbstractIteratingTag
- public interface EmptyTag
- extends CustomTag
Define characteristics of a JET2 emptyTag. An emptyTag:
Has no content (i.e. <mytag>...</mytag> is an error)
Has a single method EmptyTag.doAction(TagInfo, JET2Context, JET2Writer)
which performs the tag action
doAction
public void doAction(TagInfo td,
JET2Context context,
JET2Writer out)
throws JET2TagException
- Perform the action for the empty tag.
- Parameters:
td
- the tag information (attribute values, etc)context
- the JET2 execution contextout
- the current output writer.
- Throws:
JET2TagException
- if an error occurs