Class Project
GanttChart
uses data from this class.
A project consists of instances of Project.Task
s (can be created via createTask(String, int)
).
You can also have Project.TaskGroup
s and specify that a Project.Task
instance belongs to a specific Project.TaskGroup
instance while creating it via createTask(TaskGroup, String, int)
and Project.TaskGroup
s can be created
via createTaskGroup(String)
. Alternatively, a Project.Task
can be created under a Project.TaskGroup
via
Project.TaskGroup.createTask(String, int)
.
Dependencies between Project.Task
s and/or Project.TaskGroup
s can be specified via
dependsOn(ProjectTask, ProjectTask)
.
Note: Even though this class is designed to provide data for the GanttChart
, it can be used
independently for scheduling tasks / task groups involved in a typical project. Once you defined the project by
adding all the task groups, tasks and dependencies, you can just use methods like streamGroups()
,
streamTasks(TaskGroup)
and streamDependencies(ProjectTask)
to retrieve the data related to
the project. All those methods return data after auto-scheduling the tasks in the project.
- Author:
- Syam
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionclass
Represents a task in a project.class
Represents a group ofProject.Task
s. -
Constructor Summary
ConstructorsConstructorDescriptionProject()
Constructor for a date-based project.Project
(ChronoUnit durationType) Constructor. -
Method Summary
Modifier and TypeMethodDescriptioncreateTask
(Project.TaskGroup taskGroup, String taskName, int duration) Create and add aProject.Task
to the project.createTask
(String name, int duration) Create and add aProject.Task
to the project.createTaskGroup
(String name) Create and add aProject.TaskGroup
to the project.void
delete
(Project.Task... tasks) DeleteProject.Task
s from the project.void
delete
(Project.TaskGroup... taskGroups) DeleteProject.TaskGroup
s from the project.protected AbstractDataProvider
<String> void
dependsOn
(com.storedobject.chart.Project.ProjectTask dependent, com.storedobject.chart.Project.ProjectTask predecessor) Specify that a task/group depends on another task/group.final LocalDateTime
getEnd()
Get the project end.protected String
Get the extra axis label for the task.final int
Get the number ofProject.Task
belonging to this group.final int
final Project.TaskGroup
getTaskGroup
(int groupIndex) Get theProject.TaskGroup
of this project.protected String
getTooltipLabel
(AbstractTask abstractTask) Get the tooltip label of the given task/activity (Will be used for displaying the tooltip label).boolean
isEmpty()
void
resetEarliestStart
(com.storedobject.chart.Project.ProjectTask task) Reset the earliest start set via one of the "setEarliestStart" methods so that the constraint is no more applicable.void
setEarliestStart
(com.storedobject.chart.Project.ProjectTask task, Instant start) Set the "earliest start" possible for a task/group.void
setEarliestStart
(com.storedobject.chart.Project.ProjectTask task, LocalDate start) Set the "earliest start" possible for a task/group.void
setEarliestStart
(com.storedobject.chart.Project.ProjectTask task, LocalDateTime start) Set the "earliest start" possible for a task/group.final void
setStart
(LocalDateTime start) Set the start of the project.Stream
<com.storedobject.chart.Project.ProjectTask> streamDependencies
(com.storedobject.chart.Project.ProjectTask task) Get all dependencies of the given task or group.Get all task groups of this project.streamTasks
(Project.TaskGroup taskGroup) Get all tasks in the given task group.Methods inherited from class com.storedobject.chart.AbstractProject
encode, getActivityFontSize, getAxisLabel, getDurationType, getExtraFontSize, getGroupFontSize, getLabel, getName, getStart, getTaskFontSize, getToday, max, setActivityFontSize, setExtraFontSize, setGroupFontSize, setName, setStart, setStart, setTaskBandColors, setTaskFontSize, setTimeNow, setTimeNowColor, setToday, setTodayColor, setTodayFormat, setTooltipTimeFormat, trim, trim
-
Constructor Details
-
Project
public Project()Constructor for a date-based project. -
Project
Constructor.- Parameters:
durationType
- Type of duration to be used for this project. (Note:ChronoUnit.ERAS
andChronoUnit.FOREVER
are not supported and if used, will be considered asChronoUnit.MILLIS
).
-
-
Method Details
-
isEmpty
public boolean isEmpty() -
createTaskGroup
Create and add aProject.TaskGroup
to the project.- Parameters:
name
- Name of the task group.- Returns:
- Task group created.
-
createTask
Create and add aProject.Task
to the project. (This method should be used only if there is no need of "grouping of tasks".)- Parameters:
name
- Name of the task.duration
- Duration of the task. (A duration of zero denotes a project milestone).- Returns:
- Task created.
-
createTask
Create and add aProject.Task
to the project.- Parameters:
taskGroup
- Group to which the task to be added.taskName
- Name of the task.duration
- Duration of the task. (A duration of zero denotes a project milestone).- Returns:
- Task created. (Returns
null
if theProject.TaskGroup
passed doesn't belong to this project).
-
delete
DeleteProject.TaskGroup
s from the project. (All tasks and dependencies related to these groups will be dropped).- Parameters:
taskGroups
-Project.TaskGroup
s to delete.
-
delete
DeleteProject.Task
s from the project. (All dependencies related to these tasks will be dropped).- Parameters:
tasks
-Project.Task
s to delete.
-
dependsOn
public void dependsOn(com.storedobject.chart.Project.ProjectTask dependent, com.storedobject.chart.Project.ProjectTask predecessor) Specify that a task/group depends on another task/group.- Parameters:
dependent
- Dependent.predecessor
- Predecessor.
-
setStart
Description copied from class:AbstractProject
Set the start of the project. Depending on the duration type, one of the "setStart" methods can be used. However, the start value will be appropriately trimmed if you try to set a higher resolution value.- Overrides:
setStart
in classAbstractProject
- Parameters:
start
- Start of the project.
-
getEnd
Description copied from class:AbstractProject
Get the project end.- Specified by:
getEnd
in classAbstractProject
- Returns:
- End date/time.
-
resetEarliestStart
public void resetEarliestStart(com.storedobject.chart.Project.ProjectTask task) Reset the earliest start set via one of the "setEarliestStart" methods so that the constraint is no more applicable.- Parameters:
task
- Task for which "earliest start" needs to be reset.
-
setEarliestStart
Set the "earliest start" possible for a task/group. Depending on the duration type, one of the "setEarliestStart" methods can be used. However, the value will be appropriately trimmed if you try to set a higher resolution value. This is applied as a constraint when tasks are scheduled.Note: You can use
resetEarliestStart(ProjectTask)
to undo the effect of this constraint.- Parameters:
task
- Task/group for which the "earliest start" should be set.start
- Earliest start possible for the task/group.
-
setEarliestStart
Set the "earliest start" possible for a task/group. Depending on the duration type, one of the "setEarliestStart" methods can be used. However, the value will be appropriately trimmed if you try to set a higher resolution value. This is applied as a constraint when tasks are scheduled.Note: You can use
resetEarliestStart(ProjectTask)
to undo the effect of this constraint.- Parameters:
task
- Task/group for which the "earliest start" should be set.start
- Earliest start possible for the task/group.
-
setEarliestStart
Set the "earliest start" possible for a task/group. Depending on the duration type, one of the "setEarliestStart" methods can be used. However, the value will be appropriately trimmed if you try to set a higher resolution value. This is applied as a constraint when tasks are scheduled.Note: You can use
resetEarliestStart(ProjectTask)
to undo the effect of this constraint.- Parameters:
task
- Task/group for which the "earliest start" should be set.start
- Earliest start possible for the task/group.
-
getRowCount
public final int getRowCount() -
getTaskGroup
Get theProject.TaskGroup
of this project.- Parameters:
groupIndex
- Index of the task group to be retrieved.- Returns:
Project.TaskGroup
.
-
getGroupCount
public final int getGroupCount()Get the number ofProject.Task
belonging to this group.- Returns:
- Task count.
-
streamGroups
Get all task groups of this project.Note: Null will be returned if the project contains inconsistencies.
- Returns:
- Stream of task groups.
-
streamTasks
Get all tasks in the given task group.Note: Null will be returned if the project contains inconsistencies.
- Parameters:
taskGroup
- Task group.- Returns:
- Stream of tasks.
-
streamDependencies
public Stream<com.storedobject.chart.Project.ProjectTask> streamDependencies(com.storedobject.chart.Project.ProjectTask task) Get all dependencies of the given task or group.Note: Null will be returned if the project contains inconsistencies.
- Parameters:
task
- Task.- Returns:
- Stream of tasks/groups.
-
dependencies
-
getExtraAxisLabel
Get the extra axis label for the task. (Will be used for displaying the 2nd line of the axis label).The default implementation returns the description of the time-left to work on the task.
- Specified by:
getExtraAxisLabel
in classAbstractProject
- Parameters:
task
- Task.- Returns:
- Label.
-
getTooltipLabel
Description copied from class:AbstractProject
Get the tooltip label of the given task/activity (Will be used for displaying the tooltip label).- Specified by:
getTooltipLabel
in classAbstractProject
- Parameters:
abstractTask
- Task/activity.- Returns:
- Label.
-