Field Summary |
|
final public static boolean | ALPHABETICAL |
final public static boolean | LOWERCASE |
final public static boolean | NUMERICAL |
final public static boolean | ORDERED |
final public static boolean | UNORDERED |
final public static boolean | UPPERCASE |
protected boolean | alignindent Indicates if the indentation of all the items has to be aligned. |
protected boolean | autoindent Indicates if the indentation has to be set automatically. |
protected int | first This variable indicates the first number of a numbered list. |
protected float | indentationLeft The indentation of this list on the left side. |
protected float | indentationRight The indentation of this list on the right side. |
protected boolean | lettered Indicates if the listsymbols are numerical or alphabetical. |
protected ArrayList | list This is the ArrayList containing the different ListItem s. |
protected boolean | lowercase Indicates if the listsymbols are lowercase or uppercase. |
protected boolean | numbered Indicates if the list has to be numbered. |
protected Chunk | symbol This is the listsymbol of a list that is not numbered. |
protected float | symbolIndent The indentation of the listitems. |
Method Summary |
|
public boolean | add(Object o) Adds an Object to the List .
Parameters: o - the object to add. |
public int | first() Gets the first number . |
public ArrayList | getChunks() Gets all the chunks in this element. |
public int | getFirst() Gets the first number . |
public float | getIndentationLeft() Gets the indentation of this paragraph on the left side. |
public float | getIndentationRight() Gets the indentation of this paragraph on the right side. |
public ArrayList | getItems() Gets all the items in the list. |
public Chunk | getSymbol() Gets the Chunk containing the symbol. |
public float | getSymbolIndent() Gets the symbol indentation. |
public float | getTotalLeading() Gets the leading of the first listitem. |
public float | indentationLeft() Gets the indentation of this paragraph on the left side. |
public float | indentationRight() Gets the indentation of this paragraph on the right side. |
public boolean | isAlignindent() Checks if all the listitems should be aligned. |
public boolean | isAutoindent() Checks if the indentation of list items is done automatically. |
public boolean | isEmpty() Returns true if the list is empty. |
public boolean | isLettered() Checks if the list is lettered. |
public boolean | isLowerCase() Checks if the list lettering is lowercase. |
public boolean | isLowercase() Checks if the list lettering is lowercase. |
public boolean | isNumbered() Checks if the list is numbered. |
public void | normalizeIndentation() Makes sure all the items in the list have the same indentation. |
public boolean | process(ElementListener listener) Processes the element by adding it (or the different parts) to an
ElementListener . |
public void | setAlignindent(boolean alignindent) |
public void | setAutoindent(boolean autoindent) |
public void | setFirst(int first) Sets the number that has to come first in the list. |
public void | setIndentationLeft(float indentation) Sets the indentation of this paragraph on the left side. |
public void | setIndentationRight(float indentation) Sets the indentation of this paragraph on the right side. |
public void | setLettered(boolean lettered) |
public void | setListSymbol(Chunk symbol) Sets the listsymbol. |
public void | setListSymbol(String symbol) Sets the listsymbol. |
public void | setLowercase(boolean uppercase) |
public void | setNumbered(boolean numbered) |
public void | setSymbolIndent(float symbolIndent) |
public int | size() Gets the size of the list. |
public Chunk | symbol() Gets the Chunk containing the symbol. |
public float | symbolIndent() Gets the symbol indentation. |
public int | type() Gets the type of the text element. |