Package de.xima.fc.form.common.gagawa
Class Legend
java.lang.Object
com.hp.gagawa.java.Node
com.hp.gagawa.java.FertileNode
de.xima.fc.form.common.gagawa.Legend
public final class Legend
extends com.hp.gagawa.java.FertileNode
- 
Field SummaryFields inherited from class com.hp.gagawa.java.FertileNodechildrenFields inherited from class com.hp.gagawa.java.Nodeattributes_, parent_, tag_
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionappendChild(int index, com.hp.gagawa.java.Node child) Appends a child node at the given indexappendChild(com.hp.gagawa.java.Node child) Appends a child node to the end of this element's DOM treeappendChild(com.hp.gagawa.java.Node... children) Appends the given children in the order givenappendChild(List<com.hp.gagawa.java.Node> children) Appends a list of children in the order given in the listappendText(String text) Deprecated.This sets the raw text, you are responsible for encoding the string according to the HTML syntax!Deprecated.This gets the raw class list string, you are responsible for decoding the string according to the HTML syntax!getId()Deprecated.This gets the raw ID string, you are responsible for decoding the string according to the HTML syntax!getStyle()Deprecated.This gets the raw style string, you are responsible for decoding the string according to the HTML syntax!getTitle()Deprecated.This gets the title string, you are responsible for decoding the string according to the HTML syntax!removeChild(com.hp.gagawa.java.Node child) Removes the child nodeRemoves all child nodesbooleanRemoves the CSS class.booleanremoveId()Removes the ID attribute from this node.booleanRemoves the style attribute from this node.booleanRemoves the title attribute from this node.setCSSClass(String value) Deprecated.This sets the raw class name list string, you are responsible for encoding the string according to the HTML syntax!Deprecated.This sets the raw ID string, you are responsible for encoding the string according to the HTML syntax!Deprecated.This sets the raw style string, you are responsible for encoding the string according to the HTML syntax!Deprecated.This sets the raw title string, you are responsible for encoding the string according to the HTML syntax!Methods inherited from class com.hp.gagawa.java.FertileNodegetChild, getChildren, writeMethods inherited from class com.hp.gagawa.java.NodegetAttribute, getParent, removeAttribute, setAttribute, setParent, writeClose, writeOpen
- 
Constructor Details- 
Legendpublic Legend()
 
- 
- 
Method Details- 
appendChildAppends a child node to the end of this element's DOM tree- Parameters:
- child- Node to be appended
- Returns:
- This node for chaining method calls.
 
- 
appendChildAppends a child node at the given index- Parameters:
- index- Insertion point
- child- Node to be appended
- Returns:
- This node for chaining method calls.
 
- 
appendChildAppends a list of children in the order given in the list- Parameters:
- children- Nodes to be appended
- Returns:
- This node for chaining method calls.
 
- 
appendChildAppends the given children in the order given- Parameters:
- children- Nodes to be appended
- Returns:
- This node for chaining method calls.
 
- 
appendTextDeprecated.This sets the raw text, you are responsible for encoding the string according to the HTML syntax!Convenience method which appends a text node to this element- Parameters:
- text- the text to be appended
- Returns:
- the node
 
- 
getCSSClassDeprecated.This gets the raw class list string, you are responsible for decoding the string according to the HTML syntax! newTag()Get the class names of this node.- Returns:
- The list of class names.
 
- 
getIdDeprecated.This gets the raw ID string, you are responsible for decoding the string according to the HTML syntax! newTag()Get the ID of this node.- Returns:
- The ID of this node.
 
- 
getStyleDeprecated.This gets the raw style string, you are responsible for decoding the string according to the HTML syntax! newTag()Get the list of inline styles of this node.- Returns:
- The list of inline styles.
 
- 
getTitleDeprecated.This gets the title string, you are responsible for decoding the string according to the HTML syntax! newTag()Get the title of this node.- Returns:
- The title of this node.
 
- 
removeCSSClasspublic boolean removeCSSClass()Removes the CSS class.- Returns:
- This node for chaining method calls.
 
- 
removeChildRemoves the child node- Parameters:
- child- Node to be removed
- Returns:
- This node for chaining method calls.
 
- 
removeChildrenRemoves all child nodes- Returns:
- This node for chaining method calls.
 
- 
removeIdpublic boolean removeId()Removes the ID attribute from this node.- Returns:
- This node for chaining method calls.
 
- 
removeStylepublic boolean removeStyle()Removes the style attribute from this node.- Returns:
- This node for chaining method calls.
 
- 
removeTitlepublic boolean removeTitle()Removes the title attribute from this node.- Returns:
- This node for chaining method calls.
 
- 
setCSSClassDeprecated.This sets the raw class name list string, you are responsible for encoding the string according to the HTML syntax! newTag()Sets the CSS class name list of this node.- Parameters:
- value- The list of CSS class names.
- Returns:
- This node for chaining method calls.
 
- 
setIdDeprecated.This sets the raw ID string, you are responsible for encoding the string according to the HTML syntax! newTag()Sets the ID of this node.- Parameters:
- value- The ID to set.
- Returns:
- This node for chaining method calls.
 
- 
setStyleDeprecated.This sets the raw style string, you are responsible for encoding the string according to the HTML syntax! newTag()Sets the inline style of this node.- Parameters:
- value- The inline style to set.
- Returns:
- This node for chaining method calls.
 
- 
setTitleDeprecated.This sets the raw title string, you are responsible for encoding the string according to the HTML syntax! newTag()Sets the title of this node.- Parameters:
- value- The title to set.
- Returns:
- This node for chaining method calls.
 
 
-