Package | Description |
---|---|
org.odftoolkit.simple |
Provide high level methods to frequently used ODF documents.
|
org.odftoolkit.simple.draw |
Provide high level methods to manipulate draw frame and text box.
|
org.odftoolkit.simple.presentation |
Provide high level methods to ODF presentation documents.
|
org.odftoolkit.simple.table |
Provide convenient methods to manipulate table in ODF text and spreadsheet document.
|
org.odftoolkit.simple.text |
Provide convenient methods to manipulate frequently used structures in ODF text document, such as list and section.
|
org.odftoolkit.simple.text.list |
Provide convenient methods to handle list in ODF document.
|
Modifier and Type | Method and Description |
---|---|
List |
TextDocument.addList() |
List |
TextDocument.addList(ListDecorator decorator) |
Modifier and Type | Method and Description |
---|---|
Iterator<List> |
TextDocument.getListIterator() |
Modifier and Type | Method and Description |
---|---|
boolean |
TextDocument.removeList(List list) |
Modifier and Type | Method and Description |
---|---|
List |
Textbox.addList() |
List |
Textbox.addList(ListDecorator decorator) |
Modifier and Type | Method and Description |
---|---|
Iterator<List> |
Textbox.getListIterator() |
Modifier and Type | Method and Description |
---|---|
boolean |
Textbox.removeList(List list) |
Modifier and Type | Method and Description |
---|---|
List |
Slide.addList() |
List |
Notes.addList() |
List |
Slide.addList(ListDecorator decorator) |
List |
Notes.addList(ListDecorator decorator) |
Modifier and Type | Method and Description |
---|---|
Iterator<List> |
Slide.getListIterator() |
Iterator<List> |
Notes.getListIterator() |
Modifier and Type | Method and Description |
---|---|
boolean |
Slide.removeList(List list) |
boolean |
Notes.removeList(List list) |
Modifier and Type | Method and Description |
---|---|
List |
Cell.addList() |
List |
Cell.addList(ListDecorator decorator) |
Modifier and Type | Method and Description |
---|---|
Iterator<List> |
Cell.getListIterator() |
Modifier and Type | Method and Description |
---|---|
boolean |
Cell.removeList(List list) |
Modifier and Type | Method and Description |
---|---|
List |
Section.addList() |
List |
Section.addList(ListDecorator decorator) |
Modifier and Type | Method and Description |
---|---|
Iterator<List> |
Section.getListIterator() |
Modifier and Type | Method and Description |
---|---|
boolean |
Section.removeList(List list) |
Modifier and Type | Method and Description |
---|---|
List |
AbstractListContainer.addList() |
List |
ListItem.addList() |
List |
ListContainer.addList()
Add a new List to this container.
|
List |
AbstractListContainer.addList(ListDecorator decorator) |
List |
ListItem.addList(ListDecorator decorator) |
List |
ListContainer.addList(ListDecorator decorator)
Add a List with specified ListDecorator to this container.
|
List |
List.getContinueList()
Get the preceding list whose numbering is continued by this list.
|
List |
ListItem.getOwnerList()
Get the List which contains this ListItem.
|
Modifier and Type | Method and Description |
---|---|
Iterator<List> |
AbstractListContainer.getListIterator() |
Iterator<List> |
ListItem.getListIterator() |
Iterator<List> |
ListContainer.getListIterator()
Return an Iterator of the Lists in this ListContainer.
|
Modifier and Type | Method and Description |
---|---|
void |
ListDecorator.decorateList(List list)
Decorate the specifies
list , of which style is set. |
void |
OutLineDecorator.decorateList(List list) |
void |
ImageDecorator.decorateList(List list) |
void |
NumberDecorator.decorateList(List list) |
void |
BulletDecorator.decorateList(List list) |
boolean |
AbstractListContainer.removeList(List list) |
boolean |
ListItem.removeList(List list) |
boolean |
ListContainer.removeList(List list)
Remove the existing List from this container.
|
void |
List.setContinueList(List continueList)
Set the list whose numbering is continued by this list.
|
Constructor and Description |
---|
List(ListContainer container,
String header,
List continueList,
ListDecorator decorator)
Constructor with ListContainer, ListDecorator, header and continued list
|
Copyright © 2010-2014 The Apache Software Foundation. All Rights Reserved.