org.apache.beehive.netui.tags
Interface IHtmlCore

All Known Subinterfaces:
IHtmlAccessable, IHtmlAttrs
All Known Implementing Classes:
Anchor, AnchorBase, AnchorCell, Area, Body, Button, CheckBox, CheckBoxOption, DataGrid, FileUpload, Form, Hidden, HtmlBaseTag, HtmlDataSourceTag, HtmlDefaultableDataSourceTag, HtmlFocusBaseTag, HtmlOptionsDataSourceTag, Image, ImageAnchor, ImageButton, ImageCell, Label, LabelBase, RadioButtonOption, Select, SelectOption, Span, SpanCell, TextArea, TextBox

public interface IHtmlCore

This interface defines the HTML 4.0 core attributes. The following properties represent the core attributes: id = tagId, class = styleClass, style = style, title = title. This is a marker interface on the tags ensuring that tags representing core HTML elements have the defined property set.


Method Summary
 void setStyle(String style)
          Sets the style of the rendered html tag.
 void setStyleClass(String styleClass)
          Sets the style class of the rendered html tag.
 void setTagId(String tagId)
          Set the ID of the tag.
 void setTitle(String title)
          Sets the Nodes title.
 

Method Detail

setTagId

void setTagId(String tagId)
              throws JspException
Set the ID of the tag.

Parameters:
tagId - - the tagId.
Throws:
JspException

setTitle

void setTitle(String title)
Sets the Nodes title.

Parameters:
title -

setStyle

void setStyle(String style)
Sets the style of the rendered html tag.

Parameters:
style - - the html style.

setStyleClass

void setStyleClass(String styleClass)
Sets the style class of the rendered html tag.

Parameters:
styleClass - - the html style class.