SimpleServlets v5.5.0

Uses of Interface
com.simpleservlets.htmlobjects.HTMLElement

Packages that use HTMLElement
com.simpleservlets.htmlobjects HTMLObjects facilitates the Object-Oriented creation of HTML (see HTMLPage to get started). 
com.simpleservlets.pageprocessor The PageProcessor library makes it easy to organize an application as a collection of "pages" under one servlet. 
 

Uses of HTMLElement in com.simpleservlets.htmlobjects
 

Classes in com.simpleservlets.htmlobjects that implement HTMLElement
 class GenericHTMLElement
          Core implementation of HTMLElement.
 class HTMLBody
          Main body of an HTML page, <body> tag.
 class HTMLBold
          Bold text, <b> tag.
 class HTMLBreak
          Forced line break, <br> tag.
 class HTMLCode
          Monospaced text, <code> tag.
 class HTMLEmphasis
          Emphasized text, <em> tag.
 class HTMLEntity
          Represents an HTML entity as an HTMLElement.
 class HTMLFont
          Specified font for text, <font> tag.
 class HTMLForm
          Input form, <form> tag.
static class HTMLForm.Input
          Input for forms, <input> tag.
static class HTMLForm.Option
          Options for HTMLForm.Select, <option> tag.
static class HTMLForm.Select
          Input for forms (drop-down, scroll list), <select> tag.
 class HTMLHead
          Head section of HTML page, <head> tag.
 class HTMLHeader
          Generates the <h1>, <h2>, <h3>, and so on headers.
 class HTMLHorizontalRule
          Horizonal line, <hr> tag.
 class HTMLImage
          Inline image, <img> tag.
 class HTMLItalic
          Italic text, <i> tag.
 class HTMLLink
          Hyperlink, <a href= … > tag.
 class HTMLList
          Lists, <ul> tag and <ol> tag.
static class HTMLList.Item
          List item, <li> tag.
 class HTMLMeta
          Metainformation for the page header, <meta> tag.
 class HTMLPage
          Root tag for the entire HTML page, <html> tag.
 class HTMLParagraph
          A paragraph, <p> tag.
 class HTMLPre
          Pre-formatted text, <pre> tag.
 class HTMLSimpleForm
          Creates a two-column form.
 class HTMLSmall
          Smaller text, <small> tag.
 class HTMLSpan
          Generic container for inline elements, <span> tag.
 class HTMLString
          Represents a String as an HTMLElement.
 class HTMLStrong
          Strong text, <strong> tag.
 class HTMLStylesheetRef
          Stylesheet reference for the page header, <link> tag.
 class HTMLSubscript
          Subscript text, <sub> tag.
 class HTMLSuperscript
          Superscript text, <sup> tag.
 class HTMLTable
          An HTML table, <table> tag.
static class HTMLTable.Cell
           
static class HTMLTable.Row
           
 class HTMLTitle
          Page title, <title> tag.
 class HTMLUnderline
          Underlined text, <u> tag.
 class NoTagHTMLElement
          A generic container with neither a start nor an end tag.
 

Fields in com.simpleservlets.htmlobjects declared as HTMLElement
static HTMLElement[] HTMLElement.ZERO_LEN_ARRAY
           
 

Methods in com.simpleservlets.htmlobjects that return HTMLElement
 HTMLElement GenericHTMLElement.add(HTMLElement element)
           
 HTMLElement HTMLElement.add(HTMLElement element)
          Add the specified child element to this container.
 HTMLElement HTMLPre.addln(HTMLElement element)
          Add the specified element to this container, followed by a HTMLString.NEWLINE.
 HTMLElement GenericHTMLElement.addSibling(HTMLElement element)
           
 HTMLElement HTMLElement.addSibling(HTMLElement element)
          Add the specified element to this element's parent.
 HTMLElement HTMLPage.addSibling(HTMLElement element)
          Always throws HTMLException as HTMLPage is the root tag and does not permit siblings.
 HTMLElement[] GenericHTMLElement.getChildren()
           
 HTMLElement[] HTMLElement.getChildren()
          Returns an array of all of the children of this element.
 HTMLElement GenericHTMLElement.getParent()
           
 HTMLElement HTMLElement.getParent()
          Returns the current parent element of this element (may be null).
 

Methods in com.simpleservlets.htmlobjects with parameters of type HTMLElement
 HTMLElement GenericHTMLElement.add(HTMLElement element)
           
 HTMLElement HTMLElement.add(HTMLElement element)
          Add the specified child element to this container.
 HTMLTable.Cell HTMLTable.addCell(HTMLElement child)
           
 HTMLTable.Cell HTMLTable.Row.addCell(HTMLElement child)
           
 HTMLTable.Cell HTMLTable.addCell(HTMLElement child, AnchorPoint anchor)
           
 HTMLTable.Cell HTMLTable.Row.addCell(HTMLElement child, AnchorPoint anchor)
           
 HTMLTable.Cell HTMLTable.addCell(HTMLElement child, AnchorPoint anchor, HTMLColor bgColor, int colSpan)
           
 HTMLTable.Cell HTMLTable.Row.addCell(HTMLElement child, AnchorPoint anchor, HTMLColor bgColor, int colSpan)
           
 HTMLList.Item HTMLList.addItem(HTMLElement itemContent)
           
 HTMLElement HTMLPre.addln(HTMLElement element)
          Add the specified element to this container, followed by a HTMLString.NEWLINE.
 HTMLTable.Row HTMLSimpleForm.addRow(HTMLElement left, HTMLElement right)
           
 HTMLTable.Row HTMLSimpleForm.addRow(HTMLElement left, String text)
           
 HTMLTable.Row HTMLSimpleForm.addRow(String label, HTMLElement right)
           
 HTMLElement GenericHTMLElement.addSibling(HTMLElement element)
           
 HTMLElement HTMLElement.addSibling(HTMLElement element)
          Add the specified element to this element's parent.
 HTMLElement HTMLPage.addSibling(HTMLElement element)
          Always throws HTMLException as HTMLPage is the root tag and does not permit siblings.
static void HTMLUtil.addWarning(String msg, HTMLElement con)
          Adds a highlighted warning message to the passed container.
static HTMLString HTMLString.createUnparsed(String text, HTMLElement parent)
          Creates an HTMLString for the specified text without substituting special markup characters with their entities.
 void GenericHTMLElement.setParent(HTMLElement parent)
           
 void HTMLElement.setParent(HTMLElement parent)
          Changes or initially sets the parent element for this element.
 

Constructors in com.simpleservlets.htmlobjects with parameters of type HTMLElement
GenericHTMLElement(String name, HTMLElement parent)
           
GenericHTMLElement(String name, HTMLElement parent, boolean safeToWrapWithWhitespace)
           
HTMLBold(HTMLElement element)
           
HTMLCode(HTMLElement element)
           
HTMLEmphasis(HTMLElement element)
           
HTMLEntity(String text, HTMLElement parent)
          Creates an entity with the specified text.
HTMLFont(HTMLElement element, String size, HTMLColor color)
           
HTMLHeader(int level, HTMLElement element)
           
HTMLItalic(HTMLElement element)
           
HTMLLink(String targetURL, HTMLElement content)
           
HTMLList.Item(HTMLElement content)
           
HTMLParagraph(HTMLElement element)
           
HTMLPre(HTMLElement element)
           
HTMLSmall(HTMLElement element)
           
HTMLSpan(HTMLElement element)
           
HTMLString(String text, HTMLElement parent)
          Does: this(text, parent, false);.
HTMLString(String text, HTMLElement parent, boolean safeToWrapWithWhitespace)
           
HTMLStrong(HTMLElement element)
           
HTMLSubscript(HTMLElement element)
           
HTMLSuperscript(HTMLElement element)
           
HTMLUnderline(HTMLElement element)
           
TreeClimber(HTMLElement root, HTMLPrinter printer)
           
 

Uses of HTMLElement in com.simpleservlets.pageprocessor
 

Methods in com.simpleservlets.pageprocessor with parameters of type HTMLElement
protected  void HTMLObjectsPageHandler.createFooter(PageContext pc, HTMLElement con)
          Subclasses override this method to provide a "footer" that should be at the bottom of the page.
protected  void HTMLObjectsPageHandler.createHeader(PageContext pc, HTMLElement con)
          Subclasses override this method to provide a "header" that should be at the top of the page.
 void GenericErrorPage.processRequest(PageContext pc, HTMLElement con)
           
 void GenericReloadPage.processRequest(PageContext pc, HTMLElement con)
           
protected  void HTMLObjectsPageHandler.processRequest(PageContext pc, HTMLElement con)
          This method is called whenever there is a request aimed at this page.
 void GenericReloadPage.processRequest(PageContext pc, HTMLElement con, String continuePage)
           
protected  void HTMLObjectsPageHandler.sendPage(PageContext pc, HTMLElement con)
          This method is called from the subclass to indicate that this page should be delivered to the browser.
 


SimpleServlets v5.5.0

Copyright © 2001-2007 Programix Incorporated. All rights reserved. SimpleServlets is free and is OSI Certified Open Source Software under the BSD license.