SimpleServlets v5.5.0
A B C D E F G H I K L M N O P R S T U V W Y Z

H

hasAttributes() - Method in class com.simpleservlets.htmlobjects.GenericHTMLElement
 
hasAttributes() - Method in interface com.simpleservlets.htmlobjects.HTMLElement
Returns true if this element has any attributes set.
hasChildren() - Method in class com.simpleservlets.htmlobjects.GenericHTMLElement
 
hasChildren() - Method in interface com.simpleservlets.htmlobjects.HTMLElement
Returns true if there are currently any children nested within this element.
hashCode() - Method in class com.simpleservlets.htmlobjects.HTMLList.Style
 
HONEY_DEW - Static variable in class com.simpleservlets.htmlobjects.HTMLColor
The color 'Honey Dew'.
HOT_PINK - Static variable in class com.simpleservlets.htmlobjects.HTMLColor
The color 'Hot Pink'.
HTMLAttribute - Class in com.simpleservlets.htmlobjects
Immutable objects which hold a string-based name and a string-based value.
HTMLAttribute(String, String) - Constructor for class com.simpleservlets.htmlobjects.HTMLAttribute
Creates an attribute with the specified name and value.
HTMLAttribute(String, Value) - Constructor for class com.simpleservlets.htmlobjects.HTMLAttribute
Creates an attribute with the specified name and value.
HTMLAttribute(String, Object) - Constructor for class com.simpleservlets.htmlobjects.HTMLAttribute
Creates an attribute with the specified name and value.
HTMLAttribute(String, int) - Constructor for class com.simpleservlets.htmlobjects.HTMLAttribute
Creates an attribute with the specified name and value.
HTMLAttribute(String, double) - Constructor for class com.simpleservlets.htmlobjects.HTMLAttribute
Creates an attribute with the specified name and value.
HTMLAttribute(String) - Constructor for class com.simpleservlets.htmlobjects.HTMLAttribute
Creates an attribute defaulting the value to be the same as the name.
HTMLBody - Class in com.simpleservlets.htmlobjects
Main body of an HTML page, <body> tag.
HTMLBody(HTMLColor) - Constructor for class com.simpleservlets.htmlobjects.HTMLBody
 
HTMLBody() - Constructor for class com.simpleservlets.htmlobjects.HTMLBody
 
HTMLBold - Class in com.simpleservlets.htmlobjects
Bold text, <b> tag.
HTMLBold(HTMLElement) - Constructor for class com.simpleservlets.htmlobjects.HTMLBold
 
HTMLBold(String) - Constructor for class com.simpleservlets.htmlobjects.HTMLBold
 
HTMLBold() - Constructor for class com.simpleservlets.htmlobjects.HTMLBold
 
HTMLBreak - Class in com.simpleservlets.htmlobjects
Forced line break, <br> tag.
HTMLBreak() - Constructor for class com.simpleservlets.htmlobjects.HTMLBreak
 
HTMLCode - Class in com.simpleservlets.htmlobjects
Monospaced text, <code> tag.
HTMLCode(HTMLElement) - Constructor for class com.simpleservlets.htmlobjects.HTMLCode
 
HTMLCode(String) - Constructor for class com.simpleservlets.htmlobjects.HTMLCode
 
HTMLCode() - Constructor for class com.simpleservlets.htmlobjects.HTMLCode
 
HTMLColor - Class in com.simpleservlets.htmlobjects
Used to represent a color for HTML.
HTMLColor(String, String, String, String) - Constructor for class com.simpleservlets.htmlobjects.HTMLColor
Create a new color.
HTMLColor(String) - Constructor for class com.simpleservlets.htmlobjects.HTMLColor
Create a new color.
HTMLColor(Color) - Constructor for class com.simpleservlets.htmlobjects.HTMLColor
 
HTMLColor(int, int, int) - Constructor for class com.simpleservlets.htmlobjects.HTMLColor
Specify the amount of red, green, and blue as int.
HTMLColor(double, double, double) - Constructor for class com.simpleservlets.htmlobjects.HTMLColor
Specify the amount of red, green, and blue as double.
HTMLElement - Interface in com.simpleservlets.htmlobjects
Core unit for HTMLObjects.
HTMLEmphasis - Class in com.simpleservlets.htmlobjects
Emphasized text, <em> tag.
HTMLEmphasis(HTMLElement) - Constructor for class com.simpleservlets.htmlobjects.HTMLEmphasis
 
HTMLEmphasis(String) - Constructor for class com.simpleservlets.htmlobjects.HTMLEmphasis
 
HTMLEmphasis() - Constructor for class com.simpleservlets.htmlobjects.HTMLEmphasis
 
HTMLEntity - Class in com.simpleservlets.htmlobjects
Represents an HTML entity as an HTMLElement.
HTMLEntity(String, HTMLElement) - Constructor for class com.simpleservlets.htmlobjects.HTMLEntity
Creates an entity with the specified text.
HTMLEntity(String) - Constructor for class com.simpleservlets.htmlobjects.HTMLEntity
Does: this(text, null); (no parent currently).
HTMLException - Exception in com.simpleservlets.htmlobjects
Thrown in cases where there is trouble with the HTML.
HTMLException() - Constructor for exception com.simpleservlets.htmlobjects.HTMLException
 
HTMLException(String) - Constructor for exception com.simpleservlets.htmlobjects.HTMLException
 
HTMLException(Throwable) - Constructor for exception com.simpleservlets.htmlobjects.HTMLException
 
HTMLException(String, Throwable) - Constructor for exception com.simpleservlets.htmlobjects.HTMLException
 
HTMLFont - Class in com.simpleservlets.htmlobjects
Specified font for text, <font> tag.
HTMLFont(HTMLElement, String, HTMLColor) - Constructor for class com.simpleservlets.htmlobjects.HTMLFont
 
HTMLFont(String, String, HTMLColor) - Constructor for class com.simpleservlets.htmlobjects.HTMLFont
 
HTMLFont(String, HTMLColor) - Constructor for class com.simpleservlets.htmlobjects.HTMLFont
 
HTMLFont(String) - Constructor for class com.simpleservlets.htmlobjects.HTMLFont
 
HTMLFont(HTMLColor) - Constructor for class com.simpleservlets.htmlobjects.HTMLFont
 
HTMLForm - Class in com.simpleservlets.htmlobjects
Input form, <form> tag.
HTMLForm(String) - Constructor for class com.simpleservlets.htmlobjects.HTMLForm
Default is to use the "post" method.
HTMLForm.Input - Class in com.simpleservlets.htmlobjects
Input for forms, <input> tag.
HTMLForm.Input(String, String, String) - Constructor for class com.simpleservlets.htmlobjects.HTMLForm.Input
 
HTMLForm.Input(String, String) - Constructor for class com.simpleservlets.htmlobjects.HTMLForm.Input
 
HTMLForm.Input(String) - Constructor for class com.simpleservlets.htmlobjects.HTMLForm.Input
 
HTMLForm.Option - Class in com.simpleservlets.htmlobjects
Options for HTMLForm.Select, <option> tag.
HTMLForm.Option(String, String, boolean) - Constructor for class com.simpleservlets.htmlobjects.HTMLForm.Option
 
HTMLForm.Option(String, boolean) - Constructor for class com.simpleservlets.htmlobjects.HTMLForm.Option
 
HTMLForm.Option(String) - Constructor for class com.simpleservlets.htmlobjects.HTMLForm.Option
 
HTMLForm.Select - Class in com.simpleservlets.htmlobjects
Input for forms (drop-down, scroll list), <select> tag.
HTMLForm.Select(String, int, boolean) - Constructor for class com.simpleservlets.htmlobjects.HTMLForm.Select
 
HTMLForm.Select(String) - Constructor for class com.simpleservlets.htmlobjects.HTMLForm.Select
 
HTMLForm.Select() - Constructor for class com.simpleservlets.htmlobjects.HTMLForm.Select
 
HTMLHead - Class in com.simpleservlets.htmlobjects
Head section of HTML page, <head> tag.
HTMLHead(String) - Constructor for class com.simpleservlets.htmlobjects.HTMLHead
 
HTMLHead() - Constructor for class com.simpleservlets.htmlobjects.HTMLHead
 
HTMLHeader - Class in com.simpleservlets.htmlobjects
Generates the <h1>, <h2>, <h3>, and so on headers.
HTMLHeader(int, HTMLElement) - Constructor for class com.simpleservlets.htmlobjects.HTMLHeader
 
HTMLHeader(int, String) - Constructor for class com.simpleservlets.htmlobjects.HTMLHeader
 
HTMLHeader(int) - Constructor for class com.simpleservlets.htmlobjects.HTMLHeader
 
HTMLHorizontalRule - Class in com.simpleservlets.htmlobjects
Horizonal line, <hr> tag.
HTMLHorizontalRule(int, AnchorPoint) - Constructor for class com.simpleservlets.htmlobjects.HTMLHorizontalRule
 
HTMLHorizontalRule(int) - Constructor for class com.simpleservlets.htmlobjects.HTMLHorizontalRule
Defaults to center alignment.
HTMLHorizontalRule() - Constructor for class com.simpleservlets.htmlobjects.HTMLHorizontalRule
Defaults to no width and no alignment being specified.
HTMLImage - Class in com.simpleservlets.htmlobjects
Inline image, <img> tag.
HTMLImage(String, int, int, String, int) - Constructor for class com.simpleservlets.htmlobjects.HTMLImage
 
HTMLImage(String, int, int, String) - Constructor for class com.simpleservlets.htmlobjects.HTMLImage
 
HTMLImage() - Constructor for class com.simpleservlets.htmlobjects.HTMLImage
 
HTMLItalic - Class in com.simpleservlets.htmlobjects
Italic text, <i> tag.
HTMLItalic(HTMLElement) - Constructor for class com.simpleservlets.htmlobjects.HTMLItalic
 
HTMLItalic(String) - Constructor for class com.simpleservlets.htmlobjects.HTMLItalic
 
HTMLItalic() - Constructor for class com.simpleservlets.htmlobjects.HTMLItalic
 
HTMLLink - Class in com.simpleservlets.htmlobjects
Hyperlink, <a href= … > tag.
HTMLLink(String, HTMLElement) - Constructor for class com.simpleservlets.htmlobjects.HTMLLink
 
HTMLLink(String, String) - Constructor for class com.simpleservlets.htmlobjects.HTMLLink
 
HTMLLink(String) - Constructor for class com.simpleservlets.htmlobjects.HTMLLink
 
HTMLLink() - Constructor for class com.simpleservlets.htmlobjects.HTMLLink
 
HTMLList - Class in com.simpleservlets.htmlobjects
Lists, <ul> tag and <ol> tag.
HTMLList.Item - Class in com.simpleservlets.htmlobjects
List item, <li> tag.
HTMLList.Item(HTMLElement) - Constructor for class com.simpleservlets.htmlobjects.HTMLList.Item
 
HTMLList.Item(String) - Constructor for class com.simpleservlets.htmlobjects.HTMLList.Item
 
HTMLList.Item() - Constructor for class com.simpleservlets.htmlobjects.HTMLList.Item
No initial content, use GenericHTMLElement.add(HTMLElement) to add content.
HTMLList.OrderedStyle - Class in com.simpleservlets.htmlobjects
 
HTMLList.Style - Class in com.simpleservlets.htmlobjects
 
HTMLList.Style(int, String, String) - Constructor for class com.simpleservlets.htmlobjects.HTMLList.Style
 
HTMLList.UnorderedStyle - Class in com.simpleservlets.htmlobjects
 
HTMLMeta - Class in com.simpleservlets.htmlobjects
Metainformation for the page header, <meta> tag.
HTMLMeta() - Constructor for class com.simpleservlets.htmlobjects.HTMLMeta
 
HTMLObjectsPageHandler - Class in com.simpleservlets.pageprocessor
This class bridges the world of HTML Objects and PageProcessor.
HTMLObjectsPageHandler(String, HTMLColor) - Constructor for class com.simpleservlets.pageprocessor.HTMLObjectsPageHandler
Sets the specified default title and the specified default page background color.
HTMLObjectsPageHandler(String) - Constructor for class com.simpleservlets.pageprocessor.HTMLObjectsPageHandler
Sets the specified default title and the sets the default page background color to white.
HTMLObjectsPageHandler() - Constructor for class com.simpleservlets.pageprocessor.HTMLObjectsPageHandler
Sets the default title to "Untitled" and the default page background color to white.
HTMLPage - Class in com.simpleservlets.htmlobjects
Root tag for the entire HTML page, <html> tag.
HTMLPage(HTMLHead, HTMLBody) - Constructor for class com.simpleservlets.htmlobjects.HTMLPage
 
HTMLPage() - Constructor for class com.simpleservlets.htmlobjects.HTMLPage
 
HTMLParagraph - Class in com.simpleservlets.htmlobjects
A paragraph, <p> tag.
HTMLParagraph(HTMLElement) - Constructor for class com.simpleservlets.htmlobjects.HTMLParagraph
 
HTMLParagraph(String) - Constructor for class com.simpleservlets.htmlobjects.HTMLParagraph
 
HTMLParagraph() - Constructor for class com.simpleservlets.htmlobjects.HTMLParagraph
 
HTMLPre - Class in com.simpleservlets.htmlobjects
Pre-formatted text, <pre> tag.
HTMLPre(HTMLElement) - Constructor for class com.simpleservlets.htmlobjects.HTMLPre
 
HTMLPre(String) - Constructor for class com.simpleservlets.htmlobjects.HTMLPre
 
HTMLPre() - Constructor for class com.simpleservlets.htmlobjects.HTMLPre
 
HTMLPrinter - Interface in com.simpleservlets.htmlobjects
Generic interface for printing HTML.
HTMLSimpleForm - Class in com.simpleservlets.htmlobjects
Creates a two-column form.
HTMLSimpleForm(String) - Constructor for class com.simpleservlets.htmlobjects.HTMLSimpleForm
Creates a two-column form aligned internally by a table.
HTMLSmall - Class in com.simpleservlets.htmlobjects
Smaller text, <small> tag.
HTMLSmall(HTMLElement) - Constructor for class com.simpleservlets.htmlobjects.HTMLSmall
 
HTMLSmall(String) - Constructor for class com.simpleservlets.htmlobjects.HTMLSmall
 
HTMLSmall() - Constructor for class com.simpleservlets.htmlobjects.HTMLSmall
 
HTMLSpan - Class in com.simpleservlets.htmlobjects
Generic container for inline elements, <span> tag.
HTMLSpan(HTMLElement) - Constructor for class com.simpleservlets.htmlobjects.HTMLSpan
 
HTMLSpan(String) - Constructor for class com.simpleservlets.htmlobjects.HTMLSpan
 
HTMLSpan() - Constructor for class com.simpleservlets.htmlobjects.HTMLSpan
 
HTMLString - Class in com.simpleservlets.htmlobjects
Represents a String as an HTMLElement.
HTMLString(String, HTMLElement, boolean) - Constructor for class com.simpleservlets.htmlobjects.HTMLString
 
HTMLString(String, HTMLElement) - Constructor for class com.simpleservlets.htmlobjects.HTMLString
Does: this(text, parent, false);.
HTMLString(String, boolean) - Constructor for class com.simpleservlets.htmlobjects.HTMLString
Does: this(text, null, safeToWrapWithWhitespace);.
HTMLString(String) - Constructor for class com.simpleservlets.htmlobjects.HTMLString
Does: this(text, null, false);.
HTMLStrong - Class in com.simpleservlets.htmlobjects
Strong text, <strong> tag.
HTMLStrong(HTMLElement) - Constructor for class com.simpleservlets.htmlobjects.HTMLStrong
 
HTMLStrong(String) - Constructor for class com.simpleservlets.htmlobjects.HTMLStrong
 
HTMLStrong() - Constructor for class com.simpleservlets.htmlobjects.HTMLStrong
 
HTMLStylesheetRef - Class in com.simpleservlets.htmlobjects
Stylesheet reference for the page header, <link> tag.
HTMLStylesheetRef() - Constructor for class com.simpleservlets.htmlobjects.HTMLStylesheetRef
 
HTMLSubscript - Class in com.simpleservlets.htmlobjects
Subscript text, <sub> tag.
HTMLSubscript(HTMLElement) - Constructor for class com.simpleservlets.htmlobjects.HTMLSubscript
 
HTMLSubscript(String) - Constructor for class com.simpleservlets.htmlobjects.HTMLSubscript
 
HTMLSubscript() - Constructor for class com.simpleservlets.htmlobjects.HTMLSubscript
 
HTMLSuperscript - Class in com.simpleservlets.htmlobjects
Superscript text, <sup> tag.
HTMLSuperscript(HTMLElement) - Constructor for class com.simpleservlets.htmlobjects.HTMLSuperscript
 
HTMLSuperscript(String) - Constructor for class com.simpleservlets.htmlobjects.HTMLSuperscript
 
HTMLSuperscript() - Constructor for class com.simpleservlets.htmlobjects.HTMLSuperscript
 
HTMLTable - Class in com.simpleservlets.htmlobjects
An HTML table, <table> tag.
HTMLTable(int, int, int, HTMLColor) - Constructor for class com.simpleservlets.htmlobjects.HTMLTable
 
HTMLTable(int, int, int) - Constructor for class com.simpleservlets.htmlobjects.HTMLTable
 
HTMLTable(int, HTMLColor) - Constructor for class com.simpleservlets.htmlobjects.HTMLTable
 
HTMLTable(int) - Constructor for class com.simpleservlets.htmlobjects.HTMLTable
 
HTMLTable(HTMLColor) - Constructor for class com.simpleservlets.htmlobjects.HTMLTable
 
HTMLTable() - Constructor for class com.simpleservlets.htmlobjects.HTMLTable
 
HTMLTable.Cell - Class in com.simpleservlets.htmlobjects
 
HTMLTable.Row - Class in com.simpleservlets.htmlobjects
 
HTMLTitle - Class in com.simpleservlets.htmlobjects
Page title, <title> tag.
HTMLTitle(String) - Constructor for class com.simpleservlets.htmlobjects.HTMLTitle
 
HTMLTitle() - Constructor for class com.simpleservlets.htmlobjects.HTMLTitle
 
HTMLUnderline - Class in com.simpleservlets.htmlobjects
Underlined text, <u> tag.
HTMLUnderline(HTMLElement) - Constructor for class com.simpleservlets.htmlobjects.HTMLUnderline
 
HTMLUnderline(String) - Constructor for class com.simpleservlets.htmlobjects.HTMLUnderline
 
HTMLUnderline() - Constructor for class com.simpleservlets.htmlobjects.HTMLUnderline
 
HTMLUtil - Class in com.simpleservlets.htmlobjects
Miscellaneous utilities and tools for use with HTMLObjects.

SimpleServlets v5.5.0
A B C D E F G H I K L M N O P R S T U V W Y Z
Copyright © 2001-2007 Programix Incorporated. All rights reserved. SimpleServlets is free and is OSI Certified Open Source Software under the BSD license.