All Packages Class Hierarchy This Package Previous Next Index
Class vnet.markup.html.Title
java.lang.Object
|
+----vnet.markup.Element
|
+----vnet.markup.html.Title
- public class Title
- extends Element
The title Element for an HTML document.
-
NAME
- The element's name.
-
Title()
- Constructs a new, empty title element.
-
Title(String)
- Constructs a new title element with the given text.
-
addText(char[])
- Adds text to the Title.
-
addText(char[], int, int)
- Adds text to the Title from a subarray of a character array.
-
addText(String)
- Adds text to the Title.
NAME
public static final String NAME
- The element's name.
Title
public Title()
- Constructs a new, empty title element.
Title
public Title(String title)
- Constructs a new title element with the given text.
- Parameters:
- title - title of the HTML document.
addText
public void addText(String text)
- Adds text to the Title.
- Parameters:
- text - the String to be added.
addText
public void addText(char text[])
- Adds text to the Title.
- Parameters:
- text - the character array to be added.
addText
public void addText(char text[],
int offset,
int count)
- Adds text to the Title from a subarray of a character array.
- Parameters:
- text - the source character array.
- offset - the initial offset
- count - the length
All Packages Class Hierarchy This Package Previous Next Index