BEA NetUI tags and APIs are included for backward compatibility only. For new applications, use the Beehive tags and APIs.

Package com.bea.wlw.netui.tags.template

This package defines a set of JSP tag extensions providing a simple templating mechanism.

See:
          Description

Interface Summary
TemplateConstants Define the constants used by the template tags.
 

Class Summary
Attribute The Attribute tag defines an attribute within a template that may be set from a content page.
IncludeSection Used within a template JSP page to define a placeholder for section content.
Section Used within a content page to provide content for a placeholder section defined within a template.
SetAttribute Set an Attribute value defined in a template.
Template This tags defines the template to use within a content page.
Template.TemplateContext  
Visible Tag that turns on or off display of the body content based upon the visible state of the tag.
 

Package com.bea.wlw.netui.tags.template Description

This package defines a set of JSP tag extensions providing a simple templating mechanism. A template page is a JSP page defining the overall look and feel of a set of pages. It does this by providing an overall layout structure, style and design of the page and defines placeholders for content. These placeholders are called sections. A content page is a JSP page containing the content. The content page provides the sections of content plugged into the template. Combining the content page and the template page creates the overall look and feel of the content. The big advantage of templates is the ability to change the look and feel of a set of pages without being forced to modify each page.

The NetUI Template tags define two sets of tag extensions. The first set is used by within a JSP template page to define placeholder where content page provides content. The second set of tags is used within a content page to indicate the template to use and to define the content that will be presented within the template.

The tags used by a template page are:

The tags used by a content page are:

One additional tag is included in the package. The Visible tag defines a section that may be visible or not depending upon a boolean value. The tag may be used either within content or within a template.


BEA NetUI tags and APIs are included for backward compatibility only. For new applications, use the Beehive tags and APIs.