Uses of Class
com.flexganttfx.model.util.TimeInterval
| Package | Description |
|---|---|
| com.flexganttfx.model.util |
Various utility classes for comparing, sorting, and storing activities.
|
| com.flexganttfx.view.graphics |
The various graphics controls that are used for rendering the Gantt chart.
|
| com.flexganttfx.view.timeline |
The timeline control, which consists of the dateline and the eventline child
controls.
|
-
Uses of TimeInterval in com.flexganttfx.model.util
Methods in com.flexganttfx.model.util with parameters of type TimeInterval Modifier and Type Method Description Collection<A>IntervalTree. getIntersectingObjects(TimeInterval interval)Returns all activities found within the given time interval.Collection<A>IntervalTree. removePeriod(TimeInterval interval)Removes all activities found within the given time interval. -
Uses of TimeInterval in com.flexganttfx.view.graphics
Methods in com.flexganttfx.view.graphics that return TimeInterval Modifier and Type Method Description TimeIntervalActivityEvent. getAffectedTimeInterval()Returns the entire affected time interval of the change.TimeIntervalGraphicsBase.DragAndDropInfo. getDropInterval()Returns the time interval where the drop would take place.TimeIntervalActivityEvent. getOldTimeInterval()Returns the time interval of an activity before the user performed a change on it.Constructors in com.flexganttfx.view.graphics with parameters of type TimeInterval Constructor Description ActivityEvent(ActivityRef<?> activity, EventTarget target, EventType<? extends ActivityEvent> eventType, Row<?,?,?> oldRow, Row<?,?,?> newRow, TimeInterval oldTimeInterval)ActivityEvent(ActivityRef<?> activity, EventTarget target, EventType<? extends ActivityEvent> eventType, TimeInterval oldInterval)DragAndDropInfo(Row<?,?,?> row, ActivityBounds activityBounds, List<ActivityBounds> selectedActivities, TimeInterval dropInterval, DragEvent dragEvent, Point2D offset) -
Uses of TimeInterval in com.flexganttfx.view.timeline
Methods in com.flexganttfx.view.timeline that return TimeInterval Modifier and Type Method Description TimeIntervalDateline. getHoverTimeInterval()Returns the value ofDateline.hoverTimeIntervalProperty().TimeIntervalDatelineCell. getInterval()TimeIntervalEventline. getMarkedTimeInterval()Gets the value of the property markedTimeInterval.TimeIntervalDateline. getSelectedTimeInterval()Returns the value ofDateline.selectedTimeIntervalProperty().TimeIntervalTimeline. getVisibleTimeInterval()Gets the value of the property visibleTimeInterval.Methods in com.flexganttfx.view.timeline that return types with arguments of type TimeInterval Modifier and Type Method Description ObservableList<TimeInterval>Dateline. getSelectedIntervals()An observable list of the currently selected time intervals.ReadOnlyObjectProperty<TimeInterval>Dateline. hoverTimeIntervalProperty()A read-only property that can be used to find out the time shown at the current mouse hover location.ObjectProperty<TimeInterval>Eventline. markedTimeIntervalProperty()ReadOnlyObjectProperty<TimeInterval>Dateline. selectedTimeIntervalProperty()A read-only property used to store the currently selected time interval.ReadOnlyObjectProperty<TimeInterval>Timeline. visibleTimeIntervalProperty()Stores the currently visible time interval.Methods in com.flexganttfx.view.timeline with parameters of type TimeInterval Modifier and Type Method Description voidEventline. setMarkedTimeInterval(TimeInterval timeInterval)Sets the value of the property markedTimeInterval.voidTimeline. showRange(TimeInterval interval)Requests that the given time interval will be completely visible within the timeline.