| Package | Description |
|---|---|
| oracle.ide.todo |
Contains API classes for the To Do Item feature.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractToDoItem
A
AbstractToDoItem represents a task the user wants to track. |
| Modifier and Type | Method and Description |
|---|---|
abstract ToDoItem |
ToDoManager.createToDoItem(java.lang.String description,
int priorityId,
java.util.Date date)
Creates a
ToDoItem. |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
ToDoManager.add(ToDoItem[] items)
Adds an array of
ToDoItems to the list of items |
abstract void |
ToDoManager.remove(ToDoItem[] items)
Removes an array of
ToDoItems from the list of items |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
ToDoManager.add(java.util.List<ToDoItem> items)
Adds an List of
ToDoItems to the list of items |
abstract void |
ToDoManager.remove(java.util.List<ToDoItem> items)
Removes an List of
ToDoItems from the list of items |