BEA Systems, Inc.

WebLogic Server 5.1.0 API Reference

weblogic.html
Class OrderedList

java.lang.Object
  |
  +--weblogic.html.HtmlElement
        |
        +--weblogic.html.ElementWithAttributes
              |
              +--weblogic.html.MultiPartElement
                    |
                    +--weblogic.html.ListElement
                          |
                          +--weblogic.html.OrderedList

public class OrderedList
extends ListElement

An OrderedList object (a type of ListElement) is used to create a numbered list on an htmlKona page. Build the OrderedList by adding ListItems to it. Use the setType() method to set the numbering style with variables provided in this class. Use the setStart() method to initialize the number of the first item in the list to something other than 1.

Version:
2.1
Author:
Copyright (c) 1995-96, WebLogic, Inc.
Copyright © 2000 BEA Systems, Inc. All Rights Reserved.
See Also:
ListElement, ListItem

Field Summary
static java.lang.String arabic
           
static java.lang.String largeLatin
           
static java.lang.String largeRoman
           
static java.lang.String smallLatin
           
static java.lang.String smallRoman
           
 
Fields inherited from class weblogic.html.HtmlElement
codeset, useObsolete
 
Constructor Summary
OrderedList()
           
 
Method Summary
protected  java.lang.String getHtmlCode()
           
protected  boolean printCR()
           
protected  boolean printEndingTag()
           
 OrderedList setStart(int val)
          Initializes the list sequence for lists starting at a number (based on the formatting type) other than 1.
 OrderedList setType(java.lang.String val)
          Sets the TYPE attribute for an ordered list, which determines the numbering style.
 
Methods inherited from class weblogic.html.ListElement
addElement, addElement, addElement, getElementAt, setCompact
 
Methods inherited from class weblogic.html.MultiPartElement
addHeadMultiElement, addMultiElement, getMultiElementAt, getNumElements, printBody, printBody, printBody, removeElement, removeElementAt, replaceElementAt, replaceMultiElementAt, widthAsLiteral
 
Methods inherited from class weblogic.html.ElementWithAttributes
addAttribute, addAttribute, escapeQuotes, getBooleanAttribute, getElementAttribute, getLocalVar, getQuotedAttribute, output, output, output, printBody, setBooleanAttribute, setBooleanAttribute, setClass, setDirection, setElementAttribute, setElementAttribute, setElementAttribute, setElementAttribute, setElementAttribute, setId, setLang, setLocalVar, setQuotedAttribute, setStyle
 
Methods inherited from class weblogic.html.HtmlElement
asAnchorElement, asBigElement, asBlockquoteElement, asBoldElement, asCenteredElement, asCiteElement, asCodeElement, asCommentElement, asDefineTermElement, asEmphasisElement, asFontElement, asFontElement, asFontElement, asHtmlContainer, asItalicElement, asKeyboardElement, asLiteralElement, asParagraphElement, asSampleElement, asSmallElement, asStrikeElement, asStrongElement, asSubscriptElement, asSuperscriptElement, asTeletypeElement, asUnderlineElement, asVariableElement, getVersion, setAnchorMode, setCodeset, toString, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

largeRoman

public static final java.lang.String largeRoman

smallRoman

public static final java.lang.String smallRoman

largeLatin

public static final java.lang.String largeLatin

smallLatin

public static final java.lang.String smallLatin

arabic

public static final java.lang.String arabic
Constructor Detail

OrderedList

public OrderedList()
Method Detail

setType

public OrderedList setType(java.lang.String val)
Sets the TYPE attribute for an ordered list, which determines the numbering style. Use variables provided in this class to set numbering style, for example "setType(OrderedList.largeRoman)", or use a valid string identifier.

Note that not all browsers support this.

Parameters:
val - Numbering style

setStart

public OrderedList setStart(int val)
Initializes the list sequence for lists starting at a number (based on the formatting type) other than 1. For example, the value 2 would be interpreted as B, b, II, ii, or 2, based on the numbering style.

Note that not all browsers support this.

Parameters:
val - Number to start at

getHtmlCode

protected java.lang.String getHtmlCode()

Overrides:
getHtmlCode in class ElementWithAttributes

printCR

protected boolean printCR()

Overrides:
printCR in class ElementWithAttributes

printEndingTag

protected boolean printEndingTag()

Overrides:
printEndingTag in class ElementWithAttributes

Documentation is available at
http://www.weblogic.com/docs51