Package | Description |
---|---|
org.odftoolkit.simple.text.list |
Provide convenient methods to handle list in ODF document.
|
Modifier and Type | Method and Description |
---|---|
ListItem |
List.addItem(int location,
ListItem item)
Insert a ListItem at the specified location.
|
ListItem |
List.addItem(int location,
String itemContent)
Insert the specified ListItem at the specified location.
|
ListItem |
List.addItem(ListItem item)
Add the specified list item in ListItem object.
|
ListItem |
List.addItem(String itemContent)
Add a list item by specifying a string value.
|
ListItem |
List.getItem(int location)
Return the item at the specified location in this List.
|
ListItem |
List.set(int location,
ListItem item)
Replace the item at the specified location in this List with the
specified item.
|
ListItem |
List.set(int location,
String itemContent)
Replace the item at the specified location in this List with the
specified item content.
|
Modifier and Type | Method and Description |
---|---|
List<ListItem> |
List.addItems(int location,
ListItem[] items)
Insert the list items at the certain location
by specifying an array of ListItem.
|
List<ListItem> |
List.addItems(int location,
String[] items)
Insert the list items at the specified location in this List
by giving an array of string values.
|
List<ListItem> |
List.addItems(ListItem[] items)
Add list items by specifying an array of ListItem.
|
List<ListItem> |
List.addItems(String[] items)
Add list items by specifying an array of string values.
|
List<ListItem> |
List.getItems()
Get all of the list items.
|
Modifier and Type | Method and Description |
---|---|
ListItem |
List.addItem(int location,
ListItem item)
Insert a ListItem at the specified location.
|
ListItem |
List.addItem(ListItem item)
Add the specified list item in ListItem object.
|
List<ListItem> |
List.addItems(int location,
ListItem[] items)
Insert the list items at the certain location
by specifying an array of ListItem.
|
List<ListItem> |
List.addItems(ListItem[] items)
Add list items by specifying an array of ListItem.
|
void |
ListDecorator.decorateListItem(ListItem item)
Decorate the specifies
item in a List, of which style is
set. |
void |
OutLineDecorator.decorateListItem(ListItem item) |
void |
ImageDecorator.decorateListItem(ListItem item) |
void |
NumberDecorator.decorateListItem(ListItem item) |
void |
BulletDecorator.decorateListItem(ListItem item) |
boolean |
List.removeItem(ListItem item)
Remove the specified item from this List.
|
ListItem |
List.set(int location,
ListItem item)
Replace the item at the specified location in this List with the
specified item.
|
Modifier and Type | Method and Description |
---|---|
boolean |
List.removeItems(List<ListItem> items)
Remove all the items in the collection from this list
|
Copyright © 2010-2014 The Apache Software Foundation. All Rights Reserved.