Package com.microstrategy.web.tags
Interface TableTag
-
- All Superinterfaces:
EnumHTMLTags,Tag
public interface TableTag extends Tag
TheTableTaginterface represents a HTML table tag.- Since:
- MicroStrategy Web 8.0.0
-
-
Field Summary
-
Fields inherited from interface com.microstrategy.web.tags.EnumHTMLTags
ATT_ACTION, ATT_ALIGN, ATT_ALT, ATT_AUTOCOMPLETE, ATT_BORDER, ATT_CELLPADDING, ATT_CELLSPACING, ATT_CHECKED, ATT_CLASS, ATT_CMD_FORMAT_TYPE, ATT_CMDID, ATT_CMDLVL, ATT_COLS, ATT_COLSPAN, ATT_DG, ATT_DIALOG, ATT_DISABLED, ATT_FOR, ATT_HEIGHT, ATT_HREF, ATT_HSPACE, ATT_ID, ATT_IFRAME, ATT_LANGUAGE, ATT_MAXLENGTH, ATT_METHOD, ATT_MODAL, ATT_NAME, ATT_NOWRAP, ATT_ONCHANGE, ATT_ONCLICK, ATT_ONFOCUS, ATT_ONKEYDOWN, ATT_ONKEYUP, ATT_ONMOUSEOUT, ATT_ONMOUSEOVER, ATT_ONSUBMIT, ATT_PARAM, ATT_PLACEHOLDER, ATT_READONLY, ATT_REL, ATT_ROWS, ATT_ROWSPAN, ATT_SCRIPT_CLASS, ATT_SELECTED, ATT_SIZE, ATT_SRC, ATT_STYLE, ATT_SUMMARY, ATT_TARGET, ATT_TITLE, ATT_TY, ATT_TYPE, ATT_VALIGN, ATT_VALUE, ATT_VALUE_ABSBOTTOM, ATT_VALUE_ABSMIDDLE, ATT_VALUE_BOTTOM, ATT_VALUE_BUTTON, ATT_VALUE_CHECKBOX, ATT_VALUE_DEFAULT, ATT_VALUE_EMBED, ATT_VALUE_FALSE, ATT_VALUE_HIDDEN, ATT_VALUE_IMAGE, ATT_VALUE_JAVASCRIPT, ATT_VALUE_LEFT, ATT_VALUE_MAX, ATT_VALUE_MIDDLE, ATT_VALUE_MIN, ATT_VALUE_NUMBER, ATT_VALUE_POST, ATT_VALUE_RADIO, ATT_VALUE_SUBMIT, ATT_VALUE_TEXT, ATT_VALUE_TOP, ATT_VALUE_TRUE, ATT_VSPACE, ATT_WIDTH, TAG_NAME_ANCHOR, TAG_NAME_CELL, TAG_NAME_DIV, TAG_NAME_HEADER, TAG_NAME_IFRAME, TAG_NAME_IMAGE, TAG_NAME_INPUT, TAG_NAME_LABEL, TAG_NAME_MAP, TAG_NAME_OPTION, TAG_NAME_ROW, TAG_NAME_SCRIPT, TAG_NAME_SELECT, TAG_NAME_SPAN, TAG_NAME_STYLE, TAG_NAME_TABLE, TAG_NAME_TBODY, TAG_NAME_TEXTAREA, TAG_NAME_THEAD
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RowTagaddRow()Adds an emptyRowTagto the current table.java.lang.StringgetBorder()Returns the value of the attributeEnumHTMLTags.ATT_BORDER.java.lang.StringgetCellPadding()Returns the value of the attributeEnumHTMLTags.ATT_CELLPADDING.java.lang.StringgetCellSpacing()Returns the value of the attributeEnumHTMLTags.ATT_CELLSPACING.java.lang.StringgetWidth()Returns the value of the attributeEnumHTMLTags.ATT_WIDTH.voidsetBorder(java.lang.String border)Sets a value to the attributeEnumHTMLTags.ATT_BORDER.voidsetCellPadding(java.lang.String cellPadding)Sets a value to the attributeEnumHTMLTags.ATT_CELLPADDING.voidsetCellSpacing(java.lang.String cellSpacing)Sets a value to the attributeEnumHTMLTags.ATT_CELLSPACING.voidsetWidth(java.lang.String width)Sets a value to the attributeEnumHTMLTags.ATT_WIDTH.-
Methods inherited from interface com.microstrategy.web.tags.Tag
addChild, addChild, addChild, addTextChild, addTextChild, doEndTag, doStartTag, getAttribute, getAttributeNames, getChildren, getContent, getCssClass, getDeepCopy, getId, getLineNumber, getPreserveCase, getRootTag, getSealed, getStyle, getTagName, isClosedRequired, isContentInline, isDynamic, removeChildren, render, render, renderCloseTag, renderOpenTag, renderOpenTag, replaceContent, setAttribute, setAttributes, setCssClass, setDynamic, setId, setIsClosedRequired, setIsContentInline, setLineNumber, setPreserveCase, setRootTag, setSealed, setStyle, setTagName
-
-
-
-
Method Detail
-
addRow
RowTag addRow() throws UnmodifiableException
Adds an emptyRowTagto the current table.- Returns:
- an empty
RowTag - Throws:
UnmodifiableException- thrown if the current tag is read-only.
-
getBorder
java.lang.String getBorder()
Returns the value of the attributeEnumHTMLTags.ATT_BORDER.- Returns:
- the value of the attribute
EnumHTMLTags.ATT_BORDER.
-
getCellPadding
java.lang.String getCellPadding()
Returns the value of the attributeEnumHTMLTags.ATT_CELLPADDING.- Returns:
- the value of the attribute
EnumHTMLTags.ATT_CELLPADDING.
-
getCellSpacing
java.lang.String getCellSpacing()
Returns the value of the attributeEnumHTMLTags.ATT_CELLSPACING.- Returns:
- the value of the attribute
EnumHTMLTags.ATT_CELLSPACING.
-
getWidth
java.lang.String getWidth()
Returns the value of the attributeEnumHTMLTags.ATT_WIDTH.- Returns:
- the value of the attribute
EnumHTMLTags.ATT_WIDTH.
-
setBorder
void setBorder(java.lang.String border) throws UnmodifiableExceptionSets a value to the attributeEnumHTMLTags.ATT_BORDER. It is equivalent to call the methodsetAttribute(.EnumHTMLTags.ATT_BORDER, border)- Parameters:
border- a new value of the attributeEnumHTMLTags.ATT_BORDER.- Throws:
UnmodifiableException- thrown if the current tag is read-only.
-
setCellPadding
void setCellPadding(java.lang.String cellPadding) throws UnmodifiableExceptionSets a value to the attributeEnumHTMLTags.ATT_CELLPADDING. It is equivalent to call the methodsetAttribute(.EnumHTMLTags.ATT_CELLPADDING, cellPadding)- Parameters:
cellPadding- a new value of the attributeEnumHTMLTags.ATT_CELLPADDING.- Throws:
UnmodifiableException- thrown if the current tag is read-only.
-
setCellSpacing
void setCellSpacing(java.lang.String cellSpacing) throws UnmodifiableExceptionSets a value to the attributeEnumHTMLTags.ATT_CELLSPACING. It is equivalent to call the methodsetAttribute(.EnumHTMLTags.ATT_CELLSPACING, cellSpacing)- Parameters:
cellSpacing- a new value of the attributeEnumHTMLTags.ATT_CELLSPACING.- Throws:
UnmodifiableException- thrown if the current tag is read-only.
-
setWidth
void setWidth(java.lang.String width) throws UnmodifiableExceptionSets a value to the attributeEnumHTMLTags.ATT_WIDTH. It is equivalent to call the methodsetAttribute(.EnumHTMLTags.ATT_WIDTH, width)- Parameters:
width- a new value of the attributeEnumHTMLTags.ATT_WIDTH.- Throws:
UnmodifiableException- thrown if the current tag is read-only.
-
-