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 Summary
Fields inherited from class com.hp.gagawa.java.FertileNode
children
Fields inherited from class com.hp.gagawa.java.Node
attributes_, parent_, tag_
-
Constructor Summary
Constructors -
Method Summary
Modifier 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 nodesboolean
Removes the CSS class.boolean
removeId()
Removes the ID attribute from this node.boolean
Removes the style attribute from this node.boolean
Removes 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.FertileNode
getChild, getChildren, write
Methods inherited from class com.hp.gagawa.java.Node
getAttribute, getParent, removeAttribute, setAttribute, setParent, writeClose, writeOpen
-
Constructor Details
-
Legend
public Legend()
-
-
Method Details
-
appendChild
Appends 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.
-
appendChild
Appends a child node at the given index- Parameters:
index
- Insertion pointchild
- Node to be appended- Returns:
- This node for chaining method calls.
-
appendChild
Appends a list of children in the order given in the list- Parameters:
children
- Nodes to be appended- Returns:
- This node for chaining method calls.
-
appendChild
Appends the given children in the order given- Parameters:
children
- Nodes to be appended- Returns:
- This node for chaining method calls.
-
appendText
Deprecated.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
-
getCSSClass
Deprecated.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.
-
getId
Deprecated.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.
-
getStyle
Deprecated.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.
-
getTitle
Deprecated.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.
-
removeCSSClass
public boolean removeCSSClass()Removes the CSS class.- Returns:
- This node for chaining method calls.
-
removeChild
Removes the child node- Parameters:
child
- Node to be removed- Returns:
- This node for chaining method calls.
-
removeChildren
Removes all child nodes- Returns:
- This node for chaining method calls.
-
removeId
public boolean removeId()Removes the ID attribute from this node.- Returns:
- This node for chaining method calls.
-
removeStyle
public boolean removeStyle()Removes the style attribute from this node.- Returns:
- This node for chaining method calls.
-
removeTitle
public boolean removeTitle()Removes the title attribute from this node.- Returns:
- This node for chaining method calls.
-
setCSSClass
Deprecated.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.
-
setId
Deprecated.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.
-
setStyle
Deprecated.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.
-
setTitle
Deprecated.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.
-