Uses of Interface
com.flexganttfx.model.activity.MutableActivity
-
Packages that use MutableActivity Package Description com.flexganttfx.model.activity Classes and interfaces related to activities.com.flexganttfx.model.calendar Classes and interfaces related to calendars.com.flexganttfx.view.graphics The various graphics controls that are used for rendering the Gantt chart. -
-
Uses of MutableActivity in com.flexganttfx.model.activity
Subinterfaces of MutableActivity in com.flexganttfx.model.activity Modifier and Type Interface Description interface
MutableChartActivity
An add-on interface for chart activities where it should be possible to change the chart value at a later time.interface
MutableCompletableActivity
An add-on interface for completable activities where the user should be able to interactively edit the percentage complete value.interface
MutableHighLowChartActivity
An add-on interface for high-low activities which allows the user to interactively edit the high and low value of the activity.Classes in com.flexganttfx.model.activity that implement MutableActivity Modifier and Type Class Description class
MutableActivityBase<T>
The base implementation of a mutable activity.class
MutableChartActivityBase<T>
The base implementation of a mutable chart activity.class
MutableCompletableActivityBase<T>
The base implementation of a mutable and completable activity.class
MutableHighLowChartActivityBase<T>
The base implementation of a mutable high / low activity. -
Uses of MutableActivity in com.flexganttfx.model.calendar
Classes in com.flexganttfx.model.calendar that implement MutableActivity Modifier and Type Class Description class
MutableCalendarActivityBase<T>
A mutable calendar activity base implementation. -
Uses of MutableActivity in com.flexganttfx.view.graphics
Method parameters in com.flexganttfx.view.graphics with type arguments of type MutableActivity Modifier and Type Method Description Callback<GraphicsBase.EditModeCallbackParameter,GraphicsBase.EditMode>
GraphicsBase. getEditModeCallback(Class<? extends MutableActivity> activityType, Class<? extends Layout> layoutType)
void
GraphicsBase. setActivityEditingCallback(Class<? extends MutableActivity> activityType, Callback<GraphicsBase.EditingCallbackParameter,Boolean> callback)
Registers a callback used to determine if a given editing operation can be used for a given activity.void
GraphicsBase. setEditModeCallback(Class<? extends MutableActivity> activityType, Class<? extends Layout> layoutType, Callback<GraphicsBase.EditModeCallbackParameter,GraphicsBase.EditMode> callback)
-