Package com.storedobject.chart
Class ActivityList
java.lang.Object
com.storedobject.chart.AbstractProject
com.storedobject.chart.ActivityList
Class to represent a list of activities (instances of
ActivityList.Activity
).
ActivityChart
uses data from this class.
An ActivityList
consists of instances of ActivityList.Activity
and each ActivityList.Activity
belongs to
an ActivityList.ActivityGroup
. Instances of ActivityList.Activity
can be created via
createActivity(ActivityGroup, String, LocalDateTime, int)
or
createActivity(ActivityGroup, String, LocalDateTime, LocalDateTime)
.
Alternatively, a ActivityList.Activity
can be created under an ActivityList.ActivityGroup
via
ActivityList.ActivityGroup.createActivity(String, LocalDateTime, int)
or
createActivity(ActivityGroup, String, LocalDateTime, LocalDateTime)
.
- Author:
- Syam
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionclass
Represents an activity in aActivityList
.class
Represents a group ofActivityList.Activity
s. -
Constructor Summary
ConstructorsConstructorDescriptionConstructor for a date-based event list.ActivityList
(ChronoUnit durationType) Constructor. -
Method Summary
Modifier and TypeMethodDescriptioncreateActivity
(ActivityList.ActivityGroup activityGroup, String activityName, LocalDateTime start, int duration) Create and add aActivityList.Activity
to theActivityList
.createActivity
(ActivityList.ActivityGroup activityGroup, String activityName, LocalDateTime start, LocalDateTime end) Create and add aActivityList.Activity
to theActivityList
.createActivityGroup
(String name) Create and add aActivityList.ActivityGroup
to theActivityList
.void
delete
(ActivityList.Activity... activities) DeleteActivityList.Activity
s from theActivityList
.void
delete
(ActivityList.ActivityGroup... activityGroups) DeleteActivityList.ActivityGroup
s from theActivityList
.final LocalDateTime
getEnd()
Get the project end.getEventGroup
(int groupIndex) Get theActivityList.ActivityGroup
of thisActivityList
.protected final String
getExtraAxisLabel
(AbstractTask activity) Get the extra axis label for the task/activity.protected String
getExtraAxisLabel
(ActivityList.ActivityGroup activityGroup) final int
Get the number ofActivityList.Activity
belonging to this group.final int
final LocalDateTime
getStart()
Get the project start.protected String
getTooltipLabel
(AbstractTask abstractActivity) Get the tooltip label of the given task/activity (Will be used for displaying the tooltip label).boolean
isEmpty()
final void
setStart
(LocalDateTime start) Set the start of the project.streamActivities
(ActivityList.ActivityGroup activityGroup) Get all activities in the given activity group.Get all activity groups of thisActivityList
.Methods inherited from class com.storedobject.chart.AbstractProject
encode, getActivityFontSize, getAxisLabel, getDurationType, getExtraFontSize, getGroupFontSize, getLabel, getName, getTaskFontSize, getToday, max, setActivityFontSize, setExtraFontSize, setGroupFontSize, setName, setStart, setStart, setTaskBandColors, setTaskFontSize, setTimeNow, setTimeNowColor, setToday, setTodayColor, setTodayFormat, setTooltipTimeFormat, trim, trim
-
Constructor Details
-
ActivityList
public ActivityList()Constructor for a date-based event list. -
ActivityList
Constructor.- Parameters:
durationType
- Type of duration to be used for thisActivityList
. (Note:ChronoUnit.ERAS
andChronoUnit.FOREVER
are not supported and if used, will be considered asChronoUnit.MILLIS
).
-
-
Method Details
-
isEmpty
public boolean isEmpty() -
createActivityGroup
Create and add aActivityList.ActivityGroup
to theActivityList
.- Parameters:
name
- Name of the activity group.- Returns:
- Activity group created.
-
createActivity
public ActivityList.Activity createActivity(ActivityList.ActivityGroup activityGroup, String activityName, LocalDateTime start, int duration) Create and add aActivityList.Activity
to theActivityList
.- Parameters:
activityGroup
- Group to which theActivityList.Activity
to be added.activityName
- Name of theActivityList.Activity
.start
- Start.duration
- Duration of theActivityList.Activity
. (Should be grater than 0).- Returns:
- Activity created. (Returns
null
if theActivityList.ActivityGroup
passed doesn't belong to this).
-
createActivity
public ActivityList.Activity createActivity(ActivityList.ActivityGroup activityGroup, String activityName, LocalDateTime start, LocalDateTime end) Create and add aActivityList.Activity
to theActivityList
.- Parameters:
activityGroup
- Group to which theActivityList.Activity
to be added.activityName
- Name of theActivityList.Activity
.start
- Start.end
- End.- Returns:
- Activity created. (Returns
null
if theActivityList.ActivityGroup
passed doesn't belong to this).
-
delete
DeleteActivityList.ActivityGroup
s from theActivityList
. (AllActivityList.Activity
s and dependencies related to these groups will be dropped).- Parameters:
activityGroups
-ActivityList.ActivityGroup
s to delete.
-
delete
DeleteActivityList.Activity
s from theActivityList
. (All dependencies related to these activities will be dropped).- Parameters:
activities
-ActivityList.Activity
s to delete.
-
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.
-
getStart
Description copied from class:AbstractProject
Get the project start.- Overrides:
getStart
in classAbstractProject
- Returns:
- Start date/time.
-
getEnd
Description copied from class:AbstractProject
Get the project end.- Specified by:
getEnd
in classAbstractProject
- Returns:
- End date/time.
-
getRowCount
public final int getRowCount() -
getEventGroup
Get theActivityList.ActivityGroup
of thisActivityList
.- Parameters:
groupIndex
- Index of the activity group to be retrieved.- Returns:
ActivityList.ActivityGroup
.
-
getGroupCount
public final int getGroupCount()Get the number ofActivityList.Activity
belonging to this group.- Returns:
- Activity count.
-
streamGroups
Get all activity groups of thisActivityList
.Note: Null will be returned if the
ActivityList
contains inconsistencies.- Returns:
- Stream of activity groups.
-
streamActivities
Get all activities in the given activity group.Note: Null will be returned if the
ActivityList
contains inconsistencies.- Parameters:
activityGroup
- Activity group.- Returns:
- Stream of
ActivityList.Activity
s.
-
getExtraAxisLabel
Description copied from class:AbstractProject
Get the extra axis label for the task/activity. (Will be used for displaying the 2nd line of the axis label).- Specified by:
getExtraAxisLabel
in classAbstractProject
- Parameters:
activity
- Task.- Returns:
- Label.
-
getExtraAxisLabel
-
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:
abstractActivity
- Task/activity.- Returns:
- Label.
-