When TaskPaneView generates PropertyChangedEvents with a name of TaskViewPropertyNames.TASK_STATE_PROPERTY_NAME, the old and new values passed in the event will be TaskState objects representing what has changed in what task.
Public Types | |
enum | TaskStateProperty |
The property that we are concerned with. More... | |
Public Member Functions | |
TaskState (Task task, TaskStateProperty property, Object value) | |
Constructs a TaskState for the given task, noting that property has a value of value . | |
TaskStateProperty | getProperty () |
Gets the property for this TaskState. | |
Task | getTask () |
Gets the Task for this TaskState. | |
Object | getValue () |
The value for this TaskState. | |
Properties | |
Object | value |
The value of that property. | |
Private Attributes | |
Task | task |
The task to which this state pertains. |
The property that we are concerned with.
edu.cmu.hcii.calo.view.task.support.TaskState.TaskState | ( | Task | task, | |
TaskStateProperty | property, | |||
Object | value | |||
) |
Constructs a TaskState for the given task, noting that property
has a value of value
.
task | the task to which this state pertains | |
property | the property that we are concerned with | |
value | the value of that property |
TaskStateProperty edu.cmu.hcii.calo.view.task.support.TaskState.getProperty | ( | ) |
Task edu.cmu.hcii.calo.view.task.support.TaskState.getTask | ( | ) |
Object edu.cmu.hcii.calo.view.task.support.TaskState.getValue | ( | ) |
The task to which this state pertains.
Object edu.cmu.hcii.calo.view.task.support.TaskState.value [private] |
The value of that property.