Module com.flexganttfx.model
Package com.flexganttfx.model.activity
Interface MutableCompletableActivity
- All Superinterfaces:
Activity
,CompletableActivity
,MutableActivity
- All Known Implementing Classes:
MutableCompletableActivityBase
An add-on interface for completable activities where the user should be able
to interactively edit the percentage complete value.
- Since:
- 1.0
-
Method Summary
Modifier and TypeMethodDescriptionvoid
setPercentageComplete
(double complete) Returns the percentage complete value of the activity.Methods inherited from interface com.flexganttfx.model.Activity
getEndTime, getId, getName, getStartTime
Methods inherited from interface com.flexganttfx.model.activity.CompletableActivity
getPercentageComplete
Methods inherited from interface com.flexganttfx.model.activity.MutableActivity
setEndTime, setName, setStartTime
-
Method Details
-
setPercentageComplete
void setPercentageComplete(double complete) Returns the percentage complete value of the activity.- Parameters:
complete
- the new percentage complete value (must be between 0 and 100).- Since:
- 1.0
-