@Deprecated
public class TaskManager
extends java.lang.Object
The command-line arguments are as follows:
Modifier and Type | Class and Description |
---|---|
static class |
TaskManager.OutputFormat
Deprecated.
The format in which to output the TaskManager information.
|
static class |
TaskManager.Task
Deprecated.
Information about a single task.
|
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
comment_re
Deprecated.
|
static boolean |
completed
Deprecated.
|
static TaskManager.OutputFormat |
format
Deprecated.
|
static java.lang.String |
include_re
Deprecated.
|
static java.lang.String |
lineSep
Deprecated.
|
static java.lang.String |
milestone
Deprecated.
|
static boolean |
open
Deprecated.
|
static java.lang.String |
responsible
Deprecated.
|
java.util.List<TaskManager.Task> |
tasks
Deprecated.
List of all of the tasks.
|
static boolean |
verbose
Deprecated.
|
Constructor and Description |
---|
TaskManager()
Deprecated.
empty TaskManger.
|
TaskManager(java.lang.String[] filenames)
Deprecated.
initializes a task manager with all of the tasks in filenames.
|
Modifier and Type | Method and Description |
---|---|
void |
add(TaskManager.Task task)
Deprecated.
Adds the specified task to the end of the task list.
|
TaskManager |
completed_only()
Deprecated.
Create a new TaskManger with only completed tasks.
|
static void |
main(java.lang.String[] args)
Deprecated.
|
TaskManager |
milestone_match(java.lang.String milestone)
Deprecated.
Create a new TaskManger with only those tasks in milestone.
|
TaskManager |
open_only()
Deprecated.
Create a new TaskManger with only open tasks.
|
TaskManager |
responsible_match(java.lang.String responsible)
Deprecated.
Create a new TaskManger with only those tasks assigned to responsible.
|
java.lang.String |
toString_milestone_html()
Deprecated.
|
java.lang.String |
toString_short_ascii()
Deprecated.
|
java.lang.String |
toString_short_html()
Deprecated.
|
public static java.lang.String responsible
public static java.lang.String milestone
public static boolean completed
public static boolean open
public static boolean verbose
public static TaskManager.OutputFormat format
public static java.lang.String comment_re
public static java.lang.String include_re
public static final java.lang.String lineSep
public java.util.List<TaskManager.Task> tasks
public TaskManager()
public TaskManager(java.lang.String[] filenames) throws java.io.IOException
filenames
- list of files to read tasks fromjava.io.IOException
- if there is trouble reading a filepublic static void main(java.lang.String[] args) throws java.io.IOException
java.io.IOException
public java.lang.String toString_short_ascii()
public java.lang.String toString_short_html()
public java.lang.String toString_milestone_html()
public void add(TaskManager.Task task)
task
- the task to be queued on the task listpublic TaskManager responsible_match(java.lang.String responsible)
responsible
- name of the responsible party, or null; search for tasks assigned to
responsiblepublic TaskManager milestone_match(java.lang.String milestone)
milestone
- milestone to search forpublic TaskManager completed_only()
public TaskManager open_only()