Package com.storedobject.chart
Class AbstractTask
java.lang.Object
com.storedobject.chart.AbstractTask
- Direct Known Subclasses:
ActivityList.Activity
,ActivityList.ActivityGroup
,Project.Task
,Project.TaskGroup
Abstract base class for the representation of tasks/activities used within
Project
instances and
ActivityList
instances.- Author:
- Syam
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
getColor()
Get the color used when rendering.abstract double
Get percentage completed.abstract LocalDateTime
getEnd()
Get the end.int
Get the font-size used to render the extra information of group (Applicable only if this is a group).Get the extra information associated with this.int
Get the font-size used to render the detailsfinal long
getId()
Unique ID for this task/activity.getName()
Get the name.getStart()
Get the start.final int
hashCode()
boolean
Check if this task/activity is completed or not.boolean
Is this a milestone task? (Not applicable to activities).Start used by renderers (Maybe different from the normal start).void
Set the color to be used when rendering.void
setExtraFontSize
(int extraFontSize) Set the font size used to render the extra information of group (Applicable only if this is a group).void
setExtraInfo
(String extraInfo) Set extra information.void
setFontSize
(int fontSize) Set the font size used to render the details.void
Set the name.
-
Constructor Details
-
AbstractTask
public AbstractTask()
-
-
Method Details
-
isMilestone
public boolean isMilestone()Is this a milestone task? (Not applicable to activities).- Returns:
- True if duration is zero.
-
getId
public final long getId()Unique ID for this task/activity.- Returns:
- A unique number that is automatically generated.
-
setName
-
getName
-
getStart
-
getEnd
-
getCompleted
public abstract double getCompleted()Get percentage completed.- Returns:
- Percentage completed.
-
renderStart
Start used by renderers (Maybe different from the normal start).- Returns:
- Start for the renderers.
-
getColor
-
setColor
Set the color to be used when rendering.- Parameters:
color
- Color.
-
getFontSize
public int getFontSize()Get the font-size used to render the details- Returns:
- Font-size. Default is 12.
-
setFontSize
public void setFontSize(int fontSize) Set the font size used to render the details.- Parameters:
fontSize
- Font-size to set (in pixels). Default is 12.
-
getExtraFontSize
public int getExtraFontSize()Get the font-size used to render the extra information of group (Applicable only if this is a group).- Returns:
- Font-size. Default is 9.
-
setExtraFontSize
public void setExtraFontSize(int extraFontSize) Set the font size used to render the extra information of group (Applicable only if this is a group).Note: You can also set different values for individual groups. See
setFontSize(int)
- Parameters:
extraFontSize
- Font-size to set (in pixels). Default is 9.
-
isCompleted
public boolean isCompleted()Check if this task/activity is completed or not.- Returns:
- True/false.
-
setExtraInfo
Set extra information.- Parameters:
extraInfo
- Extra information.
-
getExtraInfo
Get the extra information associated with this.- Returns:
- Extra information associated with this.
-
equals
-
hashCode
-