Package | Description |
---|---|
ilog.views.gantt |
Contains all of the main Gantt Chart classes,
Beans, and data model interfaces.
|
ilog.views.gantt.action |
Provides Swing actions that can be added to standard
JMenu s and
JToolBar s. |
ilog.views.gantt.event |
Provides interfaces and classes for dealing
with different types of events fired by
main Gantt Chart classes.
|
ilog.views.gantt.faces.component.data |
This package contains the high level JViews Gantt Faces data sources.
|
ilog.views.gantt.graphic |
Provides the Gantt sheet component
that displays activities over time.
|
ilog.views.gantt.graphic.interactor |
Provides interactors to manipulate
the representation of activities in a 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.jdbc |
Contains a Gantt data model implementation that connects to a JDBC database.
|
ilog.views.gantt.model.table |
Contains a Gantt data model implementation that connects to Swing
TableModel
instances. |
ilog.views.gantt.project |
Provides classes that are used to apply project files created by the
Gantt Designer to an
IlvGanttChart or an
IlvScheduleChart . |
ilog.views.gantt.servlet |
Provides a Java Servlet that can produce images from a Gantt or Schedule chart.
|
ilog.views.gantt.swing |
Provides interfaces and classes for rendering and editing
Gantt data in Swing components, such as a tree or table.
|
ilog.views.gantt.swing.calendarview |
Provides classes for rendering Gantt data in Swing calendaring components, such as a
month or daily planner view.
|
ilog.views.gantt.xml |
This package contains readers and writers that allow
read/write Gantt data from/to org.w3c.dom.Element objects.
|
ilog.views.schedule |
Contains the main Schedule Data chart classes that display numerical information
derived from Gantt data models.
|
ilog.views.schedule.data |
Contains data set implementations that derive numerical information from
Gantt data models.
|
Modifier and Type | Method and Description |
---|---|
IlvGanttModel |
IlvHierarchyChart.getGanttModel()
Returns the Gantt data model for the hierarchy chart.
|
IlvGanttModel |
IlvGanttConfiguration.getGanttModel()
Returns the Gantt data model of the configuration.
|
Modifier and Type | Method and Description |
---|---|
static Iterator<IlvActivity> |
IlvGanttModelUtil.activityBreadthFirstIterator(IlvGanttModel model)
Returns an iterator that will traverse all of the activities of a data
model in breadth first order.
|
static Iterator<IlvActivity> |
IlvGanttModelUtil.activityBreadthFirstIterator(IlvGanttModel model,
IlvActivity parent)
Returns an iterator that will traverse the parent activity and all of its
descendants in breadth first order.
|
static Iterator<IlvActivity> |
IlvGanttModelUtil.activityPostorderIterator(IlvGanttModel model)
Returns an iterator that will traverse all of the activities of a data model in
postorder.
|
static Iterator<IlvActivity> |
IlvGanttModelUtil.activityPostorderIterator(IlvGanttModel model,
IlvActivity parent)
Returns an iterator that will traverse the parent activity and
all of its descendants in postorder.
|
static Iterator<IlvActivity> |
IlvGanttModelUtil.activityPreorderIterator(IlvGanttModel model)
Returns an iterator that will traverse all of the activities of a data
model in preorder.
|
static Iterator |
IlvGanttModelUtil.breadthFirstIterator(IlvGanttModel model,
IlvHierarchyNode parent)
Returns an iterator that will traverse the parent activity or resource
and all of its descendants in breadth first order.
|
static void |
IlvGanttModelUtil.checkValidMemberActivity(IlvActivity activity,
IlvGanttModel ganttModel)
Checks that the specified activity is not
null and is a member
of the specified data model. |
static void |
IlvGanttModelUtil.checkValidMemberConstraint(IlvConstraint constraint,
IlvGanttModel ganttModel)
Checks that the specified constraint is not
null and is a
member of the specified data model. |
static void |
IlvGanttModelUtil.checkValidMemberReservation(IlvReservation reservation,
IlvGanttModel ganttModel)
Checks that the specified reservation is not
null and
is a member of the specified data model. |
static void |
IlvGanttModelUtil.checkValidMemberResource(IlvResource resource,
IlvGanttModel ganttModel)
Checks that the specified resource is not
null and is a member
of the specified data model. |
static void |
IlvGanttModelUtil.checkValidNewConstraint(IlvConstraint constraint,
IlvGanttModel ganttModel)
Checks that the specified constraint is a valid argument for
ganttModel.addConstraint() . |
static void |
IlvGanttModelUtil.checkValidNewReservation(IlvReservation reservation,
IlvGanttModel ganttModel)
Checks that the specified reservation is a valid argument for
ganttModel.addReservation() . |
static void |
IlvGanttModelUtil.checkValidNonRootMemberActivity(IlvActivity activity,
IlvGanttModel ganttModel)
Checks that the specified activity is not
null , is a member
of the specified model, but is not the root activity. |
static void |
IlvGanttModelUtil.checkValidNonRootMemberResource(IlvResource resource,
IlvGanttModel ganttModel)
Checks that the specified resource is not
null , is a member
of the specified data model, but is not the root resource. |
static Iterator |
IlvGanttModelUtil.childIterator(IlvGanttModel model,
IlvHierarchyNode parent)
Returns an iterator over the children of the specified parent activity or resource.
|
static void |
IlvGanttModelUtil.demote(IlvGanttModel model,
IlvHierarchyNode activityOrResource)
Demotes the specified activity or resource so that it becomes the child of
its immediately previous sibling.
|
protected GanttModelChangedEvent |
IlvGanttConfiguration.fireGanttModelAboutToChange(IlvGanttModel newModel)
Fires a
ganttModelAboutToChange event. |
protected void |
IlvGanttConfiguration.fireGanttModelChanged(IlvGanttModel oldModel)
Fires a
ganttModelChanged event. |
static int |
IlvGanttModelUtil.getDepth(IlvGanttModel model,
IlvHierarchyNode activityOrResource)
Returns the depth of the specified activity or resource in the hierarchical
data tree.
|
static IlvHierarchyNode |
IlvGanttModelUtil.getFirstChild(IlvGanttModel model,
IlvHierarchyNode activityOrResource)
Returns the first child of the specified activity or resource.
|
static IlvHierarchyNode |
IlvGanttModelUtil.getLastChild(IlvGanttModel model,
IlvHierarchyNode activityOrResource)
Returns the last child of the specified activity or resource.
|
protected IlvHierarchyNode |
IlvVerticalDisplayController.ActivityAdapter.getRootNode(IlvGanttModel ganttModel)
Returns the root node of the specified data model or
null if
the data model has no nodes. |
protected IlvHierarchyNode |
IlvVerticalDisplayController.ResourceAdapter.getRootNode(IlvGanttModel ganttModel)
Returns the root node of the specified data model or
null if
the data model has no nodes. |
static boolean |
IlvGanttModelUtil.hasChildren(IlvGanttModel model,
IlvHierarchyNode activityOrResource)
Returns whether the specified activity or resource has any children.
|
static boolean |
IlvGanttModelUtil.isDescendant(IlvGanttModel model,
IlvHierarchyNode parent,
IlvHierarchyNode child)
Returns
true if the specified child activity or resource is a
descendant of the specified parent activity or resource in the hierarchical
data tree. |
static Iterator |
IlvGanttModelUtil.postorderIterator(IlvGanttModel model,
IlvHierarchyNode parent)
Returns an iterator that will traverse the parent activity or resource and all of its
descendants in postorder.
|
static Iterator |
IlvGanttModelUtil.preorderIterator(IlvGanttModel model,
IlvHierarchyNode parent)
Returns an iterator that will traverse the parent activity or resource and all of its
descendants in preorder.
|
static void |
IlvGanttModelUtil.promote(IlvGanttModel model,
IlvHierarchyNode activityOrResource)
Promotes the specified activity or resource so that it becomes a child of
its grandparent (that is, a sibling to its current parent).
|
static Iterator<IlvResource> |
IlvGanttModelUtil.resourceBreadthFirstIterator(IlvGanttModel model)
Returns an iterator that will traverse all of the resources of a data
model in breadth first order.
|
static Iterator<IlvResource> |
IlvGanttModelUtil.resourceBreadthFirstIterator(IlvGanttModel model,
IlvResource parent)
Returns an iterator that will traverse the parent resource and all of its
descendants in breadth first order.
|
static Iterator<IlvResource> |
IlvGanttModelUtil.resourcePostorderIterator(IlvGanttModel model)
Returns an iterator that will traverse all of the resources of a data model in
postorder.
|
static Iterator<IlvResource> |
IlvGanttModelUtil.resourcePostorderIterator(IlvGanttModel model,
IlvResource parent)
Returns an iterator that will traverse the parent resource and
all of its descendants in postorder.
|
static Iterator<IlvResource> |
IlvGanttModelUtil.resourcePreorderIterator(IlvGanttModel model)
Returns an iterator that will traverse all of the resources of a data
model in preorder.
|
void |
IlvHierarchyChart.setGanttModel(IlvGanttModel ganttModel)
Sets the data model for the hierarchy chart.
|
void |
IlvGanttConfiguration.setGanttModel(IlvGanttModel ganttModel)
Sets the Gantt data model of the configuration.
|
void |
IlvResource.setGanttModelImpl(IlvGanttModel model)
This method is invoked by the
IlvGanttModel when the resource
is added or removed. |
void |
IlvReservation.setGanttModelImpl(IlvGanttModel model)
This method is invoked by the
IlvGanttModel when the reservation
is added or removed. |
void |
IlvConstraint.setGanttModelImpl(IlvGanttModel model)
This method is invoked by the
IlvGanttModel when the constraint
is added or removed. |
void |
IlvActivity.setGanttModelImpl(IlvGanttModel model)
This method is invoked by the
IlvGanttModel when the activity
is added or removed. |
Constructor and Description |
---|
IlvGanttConfiguration(IlvGanttModel ganttModel,
int rowType)
Constructs a new
IlvGanttConfiguration that contains
the specified data model and is organized by the specified type of
horizontal rows. |
Modifier and Type | Method and Description |
---|---|
IlvTimeInterval |
IlvZoomToFitAction.IntervalPolicy.getInterval(IlvGanttModel ganttModel)
Returns the time interval of the specified Gantt data model.
|
IlvTimeInterval |
IlvZoomToFitAction.RootActivityIntervalPolicy.getInterval(IlvGanttModel ganttModel)
Returns the time interval of the specified Gantt data model.
|
Modifier and Type | Method and Description |
---|---|
IlvGanttModel |
RowMovedEvent.getGanttModel()
Returns the data model currently being displayed by the
Gantt configuration . |
IlvGanttModel |
RowExpandedEvent.getGanttModel()
Returns the data model currently being displayed by the
Gantt configuration . |
IlvGanttModel |
RowCollapsedEvent.getGanttModel()
Returns the data model currently being displayed by the
Gantt configuration . |
IlvGanttModel |
RowChildEvent.getGanttModel()
Returns the data model currently being displayed by the
Gantt configuration . |
IlvGanttModel |
ReservationRemovedEvent.getGanttModel()
Returns the data model where the event originated.
|
IlvGanttModel |
ReservationInsertedEvent.getGanttModel()
Returns the data model where the event originated.
|
IlvGanttModel |
IlvHierarchyNodeMovedEvent.getGanttModel()
Returns the data model where the event originated.
|
IlvGanttModel |
IlvHierarchyNodeChildEvent.getGanttModel()
Returns the data model where the event originated.
|
IlvGanttModel |
CriticalPathEvent.getGanttModel()
Returns the Gantt model that is having it critical path computed.
|
IlvGanttModel |
ConstraintRemovedEvent.getGanttModel()
Returns the data model where the event originated.
|
IlvGanttModel |
ConstraintInsertedEvent.getGanttModel()
Returns the data model where the event originated.
|
IlvGanttModel |
GanttModelChangedEvent.getNewGanttModel()
Returns the gantt configuration's new data model.
|
IlvGanttModel |
GanttModelChangedEvent.getOldGanttModel()
Returns the gantt configuration's old data model.
|
Modifier and Type | Method and Description |
---|---|
void |
GanttModelChangedEvent.setNewGanttModel(IlvGanttModel ganttModel)
Sets the gantt configuration's proposed new data model.
|
Constructor and Description |
---|
ActivitiesInsertedEvent(IlvGanttModel model,
IlvActivity parent,
int[] childIndices)
Constructs a new
ActivitiesInsertedEvent generated by the
specified data model that can be used to notify listeners
when child activities have been inserted into a common parent. |
ActivitiesInsertedEvent(IlvGanttModel model,
IlvActivity parent,
List<? extends IlvActivity> children)
Constructs a new
ActivitiesInsertedEvent generated by the
specified data model that can be used to notify listeners
when child activities have been inserted into a common parent. |
ActivitiesRemovedEvent(IlvGanttModel model,
IlvActivity parent,
List<? extends IlvActivity> children,
int[] childIndices)
Constructs a new
ActivitiesRemovedEvent generated by the
specified data model that can be used to notify listeners
when child activities have been removed from a common parent. |
ActivityMovedEvent(IlvGanttModel model,
IlvActivity activity,
IlvActivity oldParent,
int oldIndex,
IlvActivity newParent,
int newIndex)
Constructs a new
ActivityMovedEvent generated by the
specified data model that can be used to notify listeners when an activity
has been moved within the tree hierarchy. |
ConstraintInsertedEvent(IlvGanttModel model,
IlvConstraint constraint)
Constructs a new
ConstraintInsertedEvent generated by the
specified data model that can be used to notify listeners when a constraint
has been added to a Gantt data model. |
ConstraintRemovedEvent(IlvGanttModel model,
IlvConstraint constraint)
Constructs a new
ConstraintRemovedEvent generated by the
specified data model that can be used to notify listeners when a constraint
has been removed from a Gantt data model. |
ConstraintRemovedEvent(IlvGanttModel model,
IlvConstraint constraint,
boolean removingActivity)
Constructs a new
ConstraintRemovedEvent generated by the
specified data model that can be used to notify listeners when a constraint
has been removed from a Gantt data model. |
CriticalPathEvent(IlvGanttModel model,
int percentComplete)
Creates a new
CriticalPathEvent . |
GanttModelChangedEvent(Object source,
IlvGanttModel oldModel,
IlvGanttModel newModel,
boolean aboutToChangeEvent)
Constructs a new
GanttModelChangedEvent generated
by the specified source and with the specified old and new
data models. |
GanttModelPropertyEvent(IlvGanttModel ganttModel,
String property,
Object oldValue,
Object newValue)
Constructs a new
GanttModelPropertyEvent that indicates a property
change in the specified data model. |
IlvHierarchyNodeChildEvent(IlvGanttModel model,
N parent,
int[] childIndices)
Constructs a new
IlvHierarchyNodeChildEvent generated by the
specified data model that can be used to notify listeners
when child nodes have been inserted into a common parent. |
IlvHierarchyNodeChildEvent(IlvGanttModel model,
N parent,
List<? extends N> children)
Constructs a new
IlvHierarchyNodeChildEvent generated by the
specified data model that can be used to notify listeners
when child nodes have been inserted into a common parent. |
IlvHierarchyNodeChildEvent(IlvGanttModel model,
N parent,
List<? extends N> children,
int[] childIndices)
Constructs a new
IlvHierarchyNodeChildEvent generated by the
specified data model that can be used to notify listeners
when child nodes have been removed from a common parent. |
IlvHierarchyNodeMovedEvent(IlvGanttModel model,
IlvHierarchyNode node,
IlvHierarchyNode oldParent,
int oldIndex,
IlvHierarchyNode newParent,
int newIndex)
Constructs a new
IlvHierarchyNodeMovedEvent generated by the
specified data model that can be used to notify listeners when a node
has been moved within the tree hierarchy. |
ReservationInsertedEvent(IlvGanttModel model,
IlvReservation reservation)
Constructs a new
ReservationInsertedEvent generated by the
specified data model that can be used to notify listeners when a
reservation has been added to a Gantt data model. |
ReservationRemovedEvent(IlvGanttModel model,
IlvReservation reservation)
Constructs a new
ReservationRemovedEvent generated by the
specified data model that can be used to notify listeners when a
reservation has been removed from a Gantt data model. |
ReservationRemovedEvent(IlvGanttModel model,
IlvReservation reservation,
int removingEntity)
Constructs a new
ReservationRemovedEvent generated by the
specified data model that can be used to notify listeners when a
reservation has been removed from a Gantt data model. |
ResourceMovedEvent(IlvGanttModel model,
IlvResource resource,
IlvResource oldParent,
int oldIndex,
IlvResource newParent,
int newIndex)
Constructs a new
ResourceMovedEvent generated by the
specified data model that can be used to notify listeners when a resource
has been moved within the tree hierarchy. |
ResourcesInsertedEvent(IlvGanttModel model,
IlvResource parent,
int[] childIndices)
Constructs a new
ResourcesInsertedEvent generated by the
specified data model that can be used to notify listeners
when child resources have been inserted into a common parent. |
ResourcesInsertedEvent(IlvGanttModel model,
IlvResource parent,
List<? extends IlvResource> children)
Constructs a new
ResourcesInsertedEvent generated by the
specified data model that can be used to notify listeners
when child resources have been inserted into a common parent. |
ResourcesRemovedEvent(IlvGanttModel model,
IlvResource parent,
List<? extends IlvResource> children,
int[] childIndices)
Constructs a new
ResourcesRemovedEvent generated by the
specified data model that can be used to notify listeners
when child resources have been removed from a common parent. |
Modifier and Type | Method and Description |
---|---|
IlvGanttModel |
IlvFacesGanttDataSource.createModel()
Creates the Gantt model that will be filled by the data source.
|
IlvGanttModel |
IlvFacesGanttDataSource.getValue()
Returns the data source value.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvFacesGanttDataSource.setValue(IlvGanttModel value)
Sets the value.
|
Modifier and Type | Method and Description |
---|---|
IlvGanttModel |
IlvGanttSheet.getGanttModel()
Returns the data model that this sheet is displaying.
|
protected IlvGanttModel |
IlvDefaultActivityRendererFactory.getGanttModel()
Returns the current Gantt model of the chart.
|
Modifier and Type | Method and Description |
---|---|
IlvGanttModel |
IlvMakeConstraintInteractor.getGanttModel()
Returns the data model that the Gantt sheet is currently displaying.
|
IlvGanttModel |
IlvGanttSheetInteractor.getGanttModel()
Returns the data model that the Gantt sheet is currently displaying,
or
null if the interactor is not attached. |
IlvGanttModel |
IlvGanttObjectInteractor.getGanttModel()
While the interactor is processing an event, this
method returns the data model that the Gantt sheet is
currently displaying.
|
Modifier and Type | Class and Description |
---|---|
class |
IlvAbstractGanttModel
IlvAbstractGanttModel is the superclass of all
IlvGanttModel implementations. |
class |
IlvDefaultGanttModel
IlvDefaultGanttModel is a default implementation of the
IlvGanttModel interface, suitable for many
applications. |
Modifier and Type | Method and Description |
---|---|
IlvGanttModel |
IlvGanttModelScheduler.getGanttModel()
Returns the Gantt data model for which this scheduler is computing the
critical path.
|
IlvGanttModel |
IlvCriticalPathCalculator.getGanttModel()
Returns the Gantt data model for which this calculator is computing the critical
path.
|
protected IlvGanttModel |
IlvAbstractResource.getGanttModel()
Returns the data model that is managing this resource.
|
protected IlvGanttModel |
IlvAbstractReservation.getGanttModel()
Returns the data model that is managing this reservation.
|
protected IlvGanttModel |
IlvAbstractConstraint.getGanttModel()
Returns the data model that is managing this constraint.
|
protected IlvGanttModel |
IlvAbstractActivity.getGanttModel()
Returns the data model that is managing this activity.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvGanttModelScheduler.ErrorHandler.error(IlvConstraintCycleException ex,
IlvGanttModel ganttModel)
Signals that a constraint cycle was detected during computation of
the critical path.
|
void |
IlvGanttModelScheduler.LoggingErrorHandler.error(IlvConstraintCycleException ex,
IlvGanttModel ganttModel)
Signals that a constraint cycle was detected during computation of
the critical path.
|
void |
IlvGanttModelScheduler.setGanttModel(IlvGanttModel ganttModel)
Sets the Gantt data model for which this scheduler will compute the
critical path.
|
void |
IlvCriticalPathCalculator.setGanttModel(IlvGanttModel ganttModel)
Sets the Gantt data model for which this calculator will compute the critical
path.
|
void |
IlvSimpleActivity.setGanttModelImpl(IlvGanttModel model)
This method is invoked by
IlvGanttModel when the activity
is added or removed. |
void |
IlvAbstractResource.setGanttModelImpl(IlvGanttModel model)
This method is invoked by the
IlvGanttModel when the resource
is added or removed. |
void |
IlvAbstractReservation.setGanttModelImpl(IlvGanttModel model)
This method is invoked by the
IlvGanttModel when the reservation
is added or removed. |
void |
IlvAbstractConstraint.setGanttModelImpl(IlvGanttModel model)
This method is invoked by
IlvGanttModel when the constraint
is added or removed. |
void |
IlvAbstractActivity.setGanttModelImpl(IlvGanttModel model)
This method is invoked by the
IlvGanttModel when the activity
is added or removed. |
Constructor and Description |
---|
IlvCriticalPathCalculator(IlvGanttModel ganttModel)
Creates a new critical path calculator for the specified data model.
|
IlvGanttModelScheduler(IlvGanttModel ganttModel)
Creates a new critical path scheduler for the specified data model.
|
Modifier and Type | Class and Description |
---|---|
class |
IlvBasicFilterGanttModel
IlvBasicFilterGanttModel provides a filtered view of an underlying
data model's activities and resources. |
class |
IlvFilterGanttModel
IlvFilterGanttModel is a base class for Gantt data models that
encapsulate other models. |
Modifier and Type | Method and Description |
---|---|
IlvGanttModel |
IlvFilterGanttModel.getFilteredModel()
Returns the filtered model that this model encapsulates.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvFilterGanttModel.setFilteredModel(IlvGanttModel model)
Sets the filtered model that this model encapsulates.
|
void |
IlvBasicFilterGanttModel.setFilteredModel(IlvGanttModel model)
Sets the filtered model that this model encapsulates.
|
Constructor and Description |
---|
IlvBasicFilterGanttModel(IlvGanttModel filteredModel)
Creates a new filtering model that encapsulates the specified filtered
model.
|
IlvBasicFilterGanttModel(IlvGanttModel filteredModel,
IlvFilter<IlvActivity> activityFilter,
IlvFilter<IlvResource> resourceFilter)
Creates a new filtering model that encapsulates the specified filtered
model.
|
IlvFilterGanttModel(IlvGanttModel filteredModel)
Creates a new filtering model that encapsulates the specified filtered
model.
|
Modifier and Type | Class and Description |
---|---|
class |
IlvJDBCGanttModel
An implementation of the
IlvGanttModel interface
that connects to a database through JDBC to get the definition of the
activities, resources, constraints and reservation with simple mapping
configuration. |
Modifier and Type | Class and Description |
---|---|
class |
IlvTableGanttModel
This implementation of the
IlvGanttModel interface
builds a model from several instances of Swing TableModel s for:
activities
resources
constraints
reservations. |
Modifier and Type | Method and Description |
---|---|
IlvGanttModel |
IlvGanttProjectConfiguration.getGanttModel()
Returns the Gantt data model handled by this configuration.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvGanttXMLDataSource.read(IlvGanttModel ganttModel)
Reads data from this data source into an
IlvGanttModel |
void |
IlvGanttJDBCDataSource.read(IlvGanttModel ganttModel)
Reads data from this data source into an
IlvGanttModel |
abstract void |
IlvGanttDataSource.read(IlvGanttModel ganttModel)
Reads data from this data source into an
IlvGanttModel |
void |
IlvGanttProjectConfiguration.setGanttModel(IlvGanttModel ganttModel)
Sets the Gantt data model handled by this configuration.
|
void |
IlvGanttXMLDataSource.write(IlvGanttModel ganttModel)
Write data from an
IlvGanttModel to this data source. |
void |
IlvGanttJDBCDataSource.write(IlvGanttModel ganttModel)
Does nothing on this particular implementation as the data source is
read-only.
|
abstract void |
IlvGanttDataSource.write(IlvGanttModel ganttModel)
Write data from an
IlvGanttModel to this data source. |
Modifier and Type | Method and Description |
---|---|
protected void |
IlvGanttSelectionSupport.cacheObjectId(IlvGanttModel model,
Object object,
String id)
Caches the association of an identifier to a Gantt model object.
|
protected Object |
IlvGanttSelectionSupport.getObject(IlvGanttModel model,
String id)
Returns the Gantt model object corresponding to an identifier, provided
that the object identifier was previously cached using
cacheObjectId . |
protected Object |
IlvGanttSelectionSupport.getObject(IlvGanttModel model,
String id,
String type)
Returns the Gantt model object corresponding to an identifier and a type.
|
Modifier and Type | Method and Description |
---|---|
protected IlvGanttModel |
IlvTreeColumn.getGanttModel()
Returns the data model currently being displayed by the column.
|
protected IlvGanttModel |
IlvStringColumn.getGanttModel()
Returns the data model currently being displayed by the column.
|
Modifier and Type | Method and Description |
---|---|
IlvGanttModel |
IlvMonthView.getGanttModel()
Returns the Gantt data model that is being displayed.
|
IlvGanttModel |
IlvMonthPanel.getGanttModel()
Returns the Gantt data model that is being displayed.
|
IlvGanttModel |
IlvDayView.getGanttModel()
Returns the Gantt data model that is being displayed.
|
IlvGanttModel |
IlvMonthView.getHolidayModel()
Returns the holiday model that is being displayed.
|
IlvGanttModel |
IlvMonthPanel.getHolidayModel()
Returns the holiday model that is being displayed.
|
IlvGanttModel |
IlvDayView.getHolidayModel()
Returns the holiday model that is being displayed.
|
Modifier and Type | Method and Description |
---|---|
String |
IlvMilestoneCalendarRenderer.getToolTipText(IlvActivity milestone,
IlvGanttModel model,
Calendar calendar,
MouseEvent event)
This method is called by an
IlvMonthPanel to return tooltip text for
a displayed milestone. |
String |
IlvDefaultMilestoneCalendarRenderer.getToolTipText(IlvActivity milestone,
IlvGanttModel model,
Calendar calendar,
MouseEvent event)
This method is called by an
IlvMonthPanel to return tooltip text for
a displayed milestone. |
String |
IlvDefaultActivityCalendarRenderer.getToolTipText(IlvActivity activity,
IlvGanttModel model,
Calendar calendar,
MouseEvent event)
This method is called by an
IlvMonthPanel to return tooltip text for
a displayed activity. |
String |
IlvActivityCalendarRenderer.getToolTipText(IlvActivity activity,
IlvGanttModel model,
Calendar calendar,
MouseEvent event)
This method is called by an
IlvMonthPanel to return tooltip text for
a displayed activity. |
void |
IlvHourlyActivitySheet.setActivities(List activities,
IlvGanttModel ganttModel)
Sets the activities that are displayed on the sheet.
|
void |
IlvMonthView.setGanttModel(IlvGanttModel ganttModel)
Sets the Gantt data model that will be displayed.
|
void |
IlvMonthPanel.setGanttModel(IlvGanttModel ganttModel)
Sets the Gantt data model that will be displayed.
|
void |
IlvDayView.setGanttModel(IlvGanttModel ganttModel)
Sets the Gantt data model that will be displayed.
|
void |
IlvMonthView.setHolidayModel(IlvGanttModel holidays)
Sets the holiday model that will be displayed.
|
void |
IlvMonthPanel.setHolidayModel(IlvGanttModel holidays)
Sets the holiday model that will be displayed.
|
void |
IlvDayView.setHolidayModel(IlvGanttModel holiday)
Sets the holiday model that will be displayed.
|
Constructor and Description |
---|
IlvDayView(IlvGanttModel ganttModel)
Creates a new day view that displays the activities in the specified Gantt
data model.
|
IlvMonthPanel(IlvGanttModel ganttModel)
Creates a new month panel that displays the activities in the specified Gantt
data model.
|
IlvMonthView(IlvGanttModel ganttModel)
Creates a new month view that displays the activities in the specified Gantt
data model.
|
Modifier and Type | Method and Description |
---|---|
IlvGanttModel |
IlvGanttDocumentWriter.Context.getGanttModel()
Returns the source Gantt model that is being written to the XML
document . |
IlvGanttModel |
IlvGanttDocumentReader.Context.getGanttModel()
Returns the target Gantt model that the XML
document
is being read into. |
Modifier and Type | Method and Description |
---|---|
void |
IlvGanttDocumentReader.readGanttModel(Document document,
IlvGanttModel model)
Reads a Gantt model from the given XML document.
|
void |
IlvGanttDocumentReader.readGanttModel(Element schedule,
IlvGanttModel model)
Reads an
IlvGanttModel from a given Element . |
void |
IlvGanttDocumentWriter.writeGanttModel(Document document,
IlvGanttModel model)
Writes the specified Gantt model to the given XML document.
|
void |
IlvGanttDocumentWriter.writeGanttModel(Element schedule,
IlvGanttModel model)
Writes the content of an
IlvGanttModel to the given
Element . |
Modifier and Type | Method and Description |
---|---|
IlvGanttModel |
IlvScheduleDataChart.getGanttModel()
Returns the Gantt data model for the Schedule Data chart.
|
Modifier and Type | Method and Description |
---|---|
protected GanttModelChangedEvent |
IlvScheduleDataChart.fireGanttModelAboutToChange(IlvGanttModel newModel)
Fires a
ganttModelAboutToChange event. |
protected void |
IlvScheduleDataChart.fireGanttModelChanged(IlvGanttModel oldModel)
Fires a
ganttModelChanged event. |
void |
IlvScheduleDataChart.setGanttModel(IlvGanttModel ganttModel)
Sets the data model for the Schedule Data chart.
|
Modifier and Type | Method and Description |
---|---|
IlvGanttModel |
IlvResourceDataSet.getGanttModel()
Returns the Gantt data model associated with this data set.
|
Modifier and Type | Method and Description |
---|---|
List<IlvDataValue> |
IlvReservationLoadData.computeValues(IlvGanttModel ganttModel,
IlvReservation reservation)
Computes the list of IlvDataValues for the specified
reservation.
|
List<IlvDataValue> |
IlvReservationDataPolicy.computeValues(IlvGanttModel ganttModel,
IlvReservation reservation)
Computes the list of IlvDataValues for the specified reservation.
|
Constructor and Description |
---|
IlvResourceDataSet(IlvGanttModel ganttModel,
IlvResource resource)
Creates a dataset for the specified resource.
|
IlvResourceDataSet(IlvGanttModel ganttModel,
IlvResource resource,
IlvReservationDataPolicy dataPolicy)
Creates a dataset for the specified resource.
|
© Copyright Rogue Wave Software, Inc. 1997, 2018. All Rights Reserved.