public abstract class HTMLListItem extends HTMLTagAttributes implements java.io.Serializable
HTMLListItem objects generate the following events:
| Constructor and Description | 
|---|
| HTMLListItem() | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | getDirection()Returns the direction of the text interpretation. | 
| java.lang.String | getFOTag()Returns the tag for the XSL-FO list item. | 
| HTMLTagElement | getItemData()Returns the data in the HTMLListItem. | 
| java.lang.String | getLanguage()Returns the language of the input element. | 
| java.lang.String | getTag()Returns the tag for the HTML list item. | 
| boolean | isUseFO()Returns if Formatting Object tags are outputted. | 
| void | setDirection(java.lang.String dir)Sets the direction of the text interpretation. | 
| void | setItemData(HTMLTagElement data)Sets the item data in the HTMLListItem. | 
| void | setLanguage(java.lang.String lang)Sets the language of the input tag. | 
| void | setUseFO(boolean useFO)Sets if Formatting Object tags should be used. | 
| java.lang.String | toString()Returns a String representation for the HTMLList tag. | 
addPropertyChangeListener, getAttributes, getAttributeString, removePropertyChangeListener, setAttributespublic java.lang.String getDirection()
public HTMLTagElement getItemData()
public java.lang.String getLanguage()
public java.lang.String getTag()
getTag in interface HTMLTagElementpublic java.lang.String getFOTag()
getFOTag in interface HTMLTagElementpublic boolean isUseFO()
public void setDirection(java.lang.String dir)
dir - The direction.  One of the following constants
  defined in HTMLConstants:  LTR or RTL.HTMLConstantspublic void setItemData(HTMLTagElement data)
data - The item data.public void setLanguage(java.lang.String lang)
lang - The language.  Example language tags include:
  en and en-US.public void setUseFO(boolean useFO)
useFO - - true if output generated is an XSL formatting object, false if the output generated is HTML.public java.lang.String toString()
toString in class java.lang.Object