See: Description
| Interface | Description |
|---|---|
| ListContainer |
ListContainer is a container which maintains List(s) as element(s).
|
| ListDecorator |
ListDecorator is a decorator which decides how to decorate a List and its ListItems.
|
| Class | Description |
|---|---|
| AbstractListContainer |
AbstractListContainer is an abstract implementation of the ListContainer interface, with a
default implementation for every method defined in ListContainer , except
getListContainerElement().
|
| BulletDecorator |
BulletDecorator is an implementation of the ListDecorator interface, decorates a given List as
bullet list.
|
| BulletDecoratorBase |
Abstract implementation of the ListDecorator interface,
|
| DiscDecorator |
DiscDecorator is an implementation of the ListDecorator interface, decorates a given List as disc
list.
|
| ImageDecorator |
ImageDecorator is an implementation of the ListDecorator interface, decorates a given List as
image list.
|
| List |
This class represents a list.
|
| ListItem |
ListItem represents an item in a list.
|
| NumberDecorator |
NumberDecorator is an implementation of the ListDecorator interface, decorates a given List as
number list.
|
| NumberDecoratorBase |
NumberDecorator is an implementation of the ListDecorator interface, decorates a given List as
number list.
|
| NumberedAlphaLowerDecorator |
NumberDecorator is an implementation of the ListDecorator interface, decorates a given List as
number list.
|
| NumberedAlphaUpperDecorator |
NumberDecorator is an implementation of the ListDecorator interface, decorates a given List as
number list.
|
| NumberedGreekLowerDecorator |
NumberDecorator is an implementation of the ListDecorator interface, decorates a given List as
number list.
|
| NumberedRomanLowerDecorator |
NumberDecorator is an implementation of the ListDecorator interface, decorates a given List as
number list.
|
| NumberedRomanUpperDecorator |
NumberDecorator is an implementation of the ListDecorator interface, decorates a given List as
number list.
|
| OutLineDecorator |
OutLineDecorator is an implementation of the ListDecorator interface, decorates a given List as a
special number list with outline.
|
| SquareDecorator |
SquareDecorator is an implementation of the ListDecorator interface, decorates a given List as
square list.
|
| Enum | Description |
|---|---|
| ListDecorator.ListType |
The supported list types till now.
|
Class List represents a list. It can contain list header, followed by any number of list item elements. ListItem represents an item in a list. ListItem represents list item, which can have text content or sub List.
ListContainer is a container which maintains List(s) as element(s). List(s) can be added, removed and iterated in this container. All of the components which need to hold a List, must implement this interface. TextDocument is a typical ListContainer.
ListDecorator is a decorator which decides how to decorate a List and its ListItems. BulletDecorator, NumberDecorator, ImageDecorator and OutLineDecorator are default implementations.
Copyright © 2010–2018 Apache Software Foundation; Copyright © 2018–2020 The Document Foundation. All rights reserved.