Class Project

java.lang.Object
com.storedobject.chart.AbstractProject
com.storedobject.chart.Project

public class Project extends AbstractProject
Class to represent a project.

GanttChart uses data from this class.

A project consists of instances of Project.Tasks (can be created via createTask(String, int)). You can also have Project.TaskGroups and specify that a Project.Task instance belongs to a specific Project.TaskGroup instance while creating it via createTask(TaskGroup, String, int) and Project.TaskGroups 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.Tasks and/or Project.TaskGroups 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