Package | Description |
---|---|
ilog.views.gantt |
Contains all of the main Gantt Chart classes,
Beans, and data model interfaces.
|
ilog.views.gantt.event |
Provides interfaces and classes for dealing
with different types of events fired by
main Gantt Chart classes.
|
ilog.views.gantt.graphic.renderer |
Provides the classes that render an
activity in the Gantt sheet.
|
ilog.views.gantt.model |
Contains abstract and basic implementations of
the Gantt data model.
|
ilog.views.gantt.model.filter |
Contains Gantt data model implementations that encapsulate and filter other
data models.
|
ilog.views.gantt.model.general |
Contains a Gantt data model implementation that supports user-defined properties.
|
Modifier and Type | Method and Description |
---|---|
IlvUnaryPredicate<ActivityEvent> |
IlvActivity.getChildEventFilter()
Returns a predicate that will be used to determine the events from this
activity's children that should be dispatched to this activity's
IlvActivity.processChildEvent(ilog.views.gantt.event.ActivityEvent) method. |
Modifier and Type | Method and Description |
---|---|
void |
IlvGanttModel.fireActivityEvent(ActivityEvent event)
Fire an activityChanged event.
|
void |
IlvActivity.processChildEvent(ActivityEvent event)
This method is invoked by the
Gantt data model for
any events fired by the children of this activity and for which the
predicate returned by IlvActivity.getChildEventFilter() evaluates to
true . |
Modifier and Type | Class and Description |
---|---|
class |
ActivitiesInsertedEvent
ActivitiesInsertedEvent is used to notify listeners when
children have been inserted into a common parent activity in the
tree of activities managed by an IlvGanttModel . |
class |
ActivitiesRemovedEvent
ActivitiesRemovedEvent is used to notify listeners when
children have been removed from a common parent activity in the
tree of activities managed by an IlvGanttModel . |
class |
ActivityIDEvent
ActivityIDEvent is fired by an IlvActivity both
before and after its id is modified. |
class |
ActivityMovedEvent
ActivityMovedEvent is used to notify listeners when an activity
has been moved within a tree of activities managed by an
IlvGanttModel . |
class |
ActivityNameEvent
ActivityNameEvent is fired by an IlvActivity both
before and after its name is modified. |
class |
ActivityPropertyEvent
ActivityPropertyEvent is the superclass of all property
aboutToChange and changed events fired by
IlvActivity 's. |
class |
ActivityTimeIntervalEvent
ActivityTimeIntervalEvent is fired by an
IlvActivity both before and after its time interval is modified. |
Modifier and Type | Method and Description |
---|---|
void |
ActivityListener.activityChanged(ActivityEvent evt)
Invoked when the activity has changed in some way.
|
Modifier and Type | Method and Description |
---|---|
boolean |
IlvActivityGraphicRenderer.isRedrawNeeded(ActivityEvent evt)
Deprecated.
Since JViews 8.5, the method
IlvActivityGraphicRenderer.isRedrawNeeded(IlvActivityGraphic, ActivityEvent)
should be implemented and used instead of this one. |
boolean |
IlvActivityCompositeRenderer.isRedrawNeeded(ActivityEvent evt)
Deprecated.
Since JViews 8.5, the method
IlvActivityCompositeRenderer.isRedrawNeeded(IlvActivityGraphic, ActivityEvent)
should be implemented and used instead of this one. |
boolean |
IlvActivityRenderer.isRedrawNeeded(IlvActivityGraphic ag,
ActivityEvent evt)
This method is called by an
activity graphic to determine if
the graphic should redraw itself as a result of the specified activity
event, that is, in situations when IlvActivityRenderer.isRelayoutNeeded(ilog.views.gantt.graphic.IlvActivityGraphic, ilog.views.gantt.event.ActivityEvent)
returned false . |
boolean |
IlvActivityGraphicRenderer.isRedrawNeeded(IlvActivityGraphic ag,
ActivityEvent evt)
This method is called by an
activity graphic to
determine if the graphic should redraw itself as a result of the specified
activity event, that is, in situations when IlvActivityGraphicRenderer.isRelayoutNeeded(ilog.views.gantt.graphic.IlvActivityGraphic, ilog.views.gantt.event.ActivityEvent)
returned false . |
boolean |
IlvActivityCompositeRenderer.isRedrawNeeded(IlvActivityGraphic ag,
ActivityEvent evt)
This method is called by an
activity graphic to
determine if the graphic should redraw itself as a result of the specified activity
event, that is, in situations when IlvActivityCompositeRenderer.isRelayoutNeeded(ilog.views.gantt.graphic.IlvActivityGraphic, ilog.views.gantt.event.ActivityEvent) returned
false . |
boolean |
IlvActivityBar.isRedrawNeeded(IlvActivityGraphic ag,
ActivityEvent evt)
This method is called by an
activity graphic to
determine if the graphic should redraw itself as a result of the specified activity
event, that is, in situations when IlvActivityGraphicRenderer.isRelayoutNeeded(ilog.views.gantt.graphic.IlvActivityGraphic, ilog.views.gantt.event.ActivityEvent) returned
false . |
boolean |
IlvActivityRenderer.isRelayoutNeeded(IlvActivityGraphic ag,
ActivityEvent evt)
This method is called by an
activity graphic to
determine if the layout of the activities in its row needs to be redone
as a result of the specified activity event. |
boolean |
IlvActivityLabel.isRelayoutNeeded(IlvActivityGraphic ag,
ActivityEvent evt)
This method is called by an
activity graphic to
determine if its bounding box may have changed as a result of the
specified activity event. |
boolean |
IlvActivityGraphicRenderer.isRelayoutNeeded(IlvActivityGraphic ag,
ActivityEvent evt)
This method is called by an
activity graphic to
determine if its bounding box may have changed as a result of the
specified activity event. |
boolean |
IlvActivityCompositeRenderer.isRelayoutNeeded(IlvActivityGraphic ag,
ActivityEvent evt)
This method is called by an
activity graphic to
determine if its bounding box may have changed as a result of the
specified activity event. |
Modifier and Type | Method and Description |
---|---|
IlvUnaryPredicate<ActivityEvent> |
IlvSimpleActivity.getChildEventFilter()
Returns a predicate that will be used to determine the events from this
activity's children that should be dispatched to this activity's
IlvSimpleActivity.processChildEvent(ilog.views.gantt.event.ActivityEvent) method. |
IlvUnaryPredicate<ActivityEvent> |
IlvAbstractActivity.getChildEventFilter()
Returns a predicate that will be used to determine the events from this
activity's children that should be dispatched to this activity's
IlvAbstractActivity.processChildEvent(ilog.views.gantt.event.ActivityEvent) method. |
Modifier and Type | Method and Description |
---|---|
void |
IlvAbstractGanttModel.fireActivityEvent(ActivityEvent event)
Fires an
activityChanged event. |
protected void |
IlvAbstractActivity.fireEvent(ActivityEvent event)
Fires an event from this activity.
|
void |
IlvSimpleActivity.processChildEvent(ActivityEvent event)
This method is invoked by the
Gantt data model for
any events fired by the children of this activity and for which the
predicate returned by IlvSimpleActivity.getChildEventFilter() evaluates to
true . |
void |
IlvAbstractActivity.processChildEvent(ActivityEvent event)
This method is invoked by the
Gantt data model for
any events fired by the children of this activity and for which the
predicate returned by IlvAbstractActivity.getChildEventFilter() evaluates to
true . |
Modifier and Type | Method and Description |
---|---|
void |
IlvFilterGanttModel.ActivityEventHandler.activityChanged(ActivityEvent event)
This method is invoked when a property of an activity in the encapsulated
data model has changed.
|
void |
IlvFilterGanttModel.fireActivityEvent(ActivityEvent event)
Fires an
activityChanged event. |
Modifier and Type | Class and Description |
---|---|
class |
ActivityUserPropertyEvent
ActivityUserPropertyEvent is fired by an
IlvGeneralActivity both before and after a
user-defined property is modified . |
© Copyright Rogue Wave Software, Inc. 1997, 2018. All Rights Reserved.