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 |
Provides the Gantt sheet component
that displays activities over time.
|
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.
|
ilog.views.gantt.model.table |
Contains a Gantt data model implementation that connects to Swing
TableModel
instances. |
ilog.views.gantt.property |
Provides interfaces and classes for accessing
arbitrary object properties.
|
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.data |
Contains data set implementations that derive numerical information from
Gantt data models.
|
Modifier and Type | Method and Description |
---|---|
IlvReservation |
IlvReservationFactory.createReservation(IlvResource resource,
IlvActivity activity)
Creates an
IlvReservation object from the given parameters. |
IlvReservation[] |
IlvScheduleChart.getSelectedReservations()
Returns the reservations that are selected in the Schedule chart.
|
IlvReservation[] |
IlvGanttConfiguration.getSelectedReservations()
Returns the reservations that are currently selected.
|
Modifier and Type | Method and Description |
---|---|
Iterator<IlvReservation> |
IlvGanttModel.reservationIterator()
Returns an iterator over all of the reservations in the data model.
|
Iterator<IlvReservation> |
IlvGanttModel.reservationIterator(IlvActivity activity)
Returns an iterator over all of the reservations in the data model
that are associated with the specified activity.
|
Iterator<IlvReservation> |
IlvGanttModel.reservationIterator(IlvResource resource)
Returns an iterator over all of the reservations in the data model
that are associated with the specified resource.
|
Iterator<IlvReservation> |
IlvCacheManager.reservationIterator(IlvResource resource)
Returns an iterator over the reservations that are associated with the
specified resource.
|
Iterator<IlvReservation> |
IlvGanttModel.reservationIterator(IlvResource resource,
IlvTimeInterval interval)
Returns an iterator over all of the reservations in the data model
that are associated with the specified resource and where the assigned
activity intersects the specified time interval.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvGanttModel.addReservation(IlvReservation newReservation)
Adds
newReservation to the 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.checkValidNewReservation(IlvReservation reservation,
IlvGanttModel ganttModel)
Checks that the specified reservation is a valid argument for
ganttModel.addReservation() . |
static void |
IlvGanttModelUtil.checkValidNonNullReservation(IlvReservation reservation)
Checks that the specified reservation is not
null . |
boolean |
IlvGanttModel.contains(IlvReservation reservation)
Returns whether the specified reservation is a member of the data model.
|
void |
IlvGanttModel.removeReservation(IlvReservation reservation)
Removes the specified
reservation from the data model. |
void |
IlvScheduleChart.select(IlvReservation reservation,
boolean selected)
Selects or deselects the specified reservation.
|
Modifier and Type | Method and Description |
---|---|
IlvReservation |
ReservationRemovedEvent.getReservation()
Returns the reservation that was removed.
|
IlvReservation |
ReservationPropertyEvent.getReservation()
Returns the reservation where this event originated.
|
IlvReservation |
ReservationInsertedEvent.getReservation()
Returns the reservation which was inserted.
|
IlvReservation |
ReservationEvent.getReservation()
Returns the reservation where this event originated.
|
Constructor and Description |
---|
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. |
ReservationPropertyEvent(IlvReservation reservation,
Object oldValue,
Object newValue,
boolean aboutToChangeEvent)
Constructs a new
ReservationPropertyEvent generated by the
specified reservation. |
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. |
ReservedResourceEvent(IlvReservation reservation,
IlvResource oldResource,
IlvResource newResource,
boolean aboutToChangeEvent)
Constructs a new
ReservedResourceEvent generated by the
specified reservation and with the specified old and new resources. |
Modifier and Type | Method and Description |
---|---|
IlvReservation |
IlvReservationGraphic.getReservation()
Returns the represented reservation.
|
Modifier and Type | Method and Description |
---|---|
IlvReservationGraphic |
IlvGanttSheet.getReservationGraphic(IlvReservation reservation)
Returns the
IlvReservationGraphic representing the given
IlvReservation . |
IlvReservationGraphic |
IlvGanttRow.getReservationGraphic(IlvReservation reservation)
Returns the reservation graphic representing the given reservation.
|
void |
IlvGanttSheet.setReservationRenderer(IlvReservation reservation,
IlvActivityRenderer renderer)
This method first finds the reservation graphic that represents the
specified reservation and then changes the activity renderer of
the reservation graphic.
|
Modifier and Type | Class and Description |
---|---|
class |
IlvAbstractReservation
IlvAbstractReservation is the superclass of all
IlvReservation implementations. |
class |
IlvSimpleReservation
IlvSimpleReservation is a relatively simple, memory-based
implementation of the IlvReservation interface that can
be extended in a straightforward manner for more complex needs. |
Modifier and Type | Method and Description |
---|---|
IlvReservation |
IlvSimpleReservationFactory.createReservation(IlvResource resource,
IlvActivity activity)
Creates an
IlvSimpleReservation from the given parameters. |
Modifier and Type | Method and Description |
---|---|
Iterator<IlvReservation> |
IlvDefaultGanttModel.reservationIterator()
Returns an iterator over all the reservations in the data model.
|
Iterator<IlvReservation> |
IlvDefaultGanttModel.reservationIterator(IlvActivity activity)
Returns an iterator over all the reservations in the data model
that are associated with the specified activity.
|
Iterator<IlvReservation> |
IlvDefaultGanttModel.reservationIterator(IlvResource resource)
Returns an iterator over all the reservations in the data model
that are associated with the specified resource.
|
Iterator<IlvReservation> |
IlvDefaultGanttModel.reservationIterator(IlvResource resource,
IlvTimeInterval interval)
Returns an iterator over all the reservations in the data model
that are associated with the specified resource and where the assigned
activity intersects the specified time interval.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvDefaultGanttModel.addReservation(IlvReservation newReservation)
Adds
newReservation to the data model. |
boolean |
IlvDefaultGanttModel.contains(IlvReservation reservation)
Returns whether the specified reservation is a member of the data model.
|
protected void |
IlvAbstractGanttModel.fireReservationInserted(IlvReservation reservation)
Fires a
ReservationInsertedEvent . |
protected void |
IlvAbstractGanttModel.fireReservationRemoved(IlvReservation reservation)
Fires a
ReservationRemovedEvent . |
protected void |
IlvAbstractGanttModel.fireReservationRemoved(IlvReservation reservation,
int removingEntity)
Fires a
ReservationRemovedEvent . |
void |
IlvDefaultGanttModel.removeReservation(IlvReservation reservation)
Removes the specified
reservation from the data model. |
Modifier and Type | Method and Description |
---|---|
Iterator<IlvReservation> |
IlvFilterGanttModel.reservationIterator()
Returns an iterator over all the reservations in the data model.
|
Iterator<IlvReservation> |
IlvBasicFilterGanttModel.reservationIterator()
Returns an iterator over all the reservations in the data model.
|
Iterator<IlvReservation> |
IlvFilterGanttModel.reservationIterator(IlvActivity activity)
Returns an iterator over all the reservations in the data model
that are associated with the specified activity.
|
Iterator<IlvReservation> |
IlvBasicFilterGanttModel.reservationIterator(IlvActivity activity)
Returns an iterator over all the reservations in the data model
that are associated with the specified activity.
|
Iterator<IlvReservation> |
IlvFilterGanttModel.reservationIterator(IlvResource resource)
Returns an iterator over all the reservations in the data model
that are associated with the specified resource.
|
Iterator<IlvReservation> |
IlvBasicFilterGanttModel.reservationIterator(IlvResource resource)
Returns an iterator over all the reservations in the data model
that are associated with the specified resource.
|
Iterator<IlvReservation> |
IlvFilterGanttModel.reservationIterator(IlvResource resource,
IlvTimeInterval interval)
Returns an iterator over all the reservations in the data model
that are associated with the specified resource and where the assigned
activity intersects the specified time interval.
|
Iterator<IlvReservation> |
IlvBasicFilterGanttModel.reservationIterator(IlvResource resource,
IlvTimeInterval interval)
Returns an iterator over all the reservations in the data model
that are associated with the specified resource and where the assigned
activity intersects the specified time interval.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvFilterGanttModel.addReservation(IlvReservation newReservation)
Adds
newReservation to the data model. |
boolean |
IlvFilterGanttModel.contains(IlvReservation reservation)
Returns whether the specified reservation is a member of the data model.
|
boolean |
IlvBasicFilterGanttModel.contains(IlvReservation reservation)
Returns whether the specified reservation is a member of the data model.
|
void |
IlvFilterGanttModel.removeReservation(IlvReservation reservation)
Removes the specified
reservation from the data model. |
Modifier and Type | Class and Description |
---|---|
class |
IlvGeneralReservation
IlvGeneralReservation is an extension of
IlvSimpleReservation that adds support for user-defined properties. |
Modifier and Type | Method and Description |
---|---|
IlvReservation |
IlvGeneralReservation.Factory.createReservation(IlvResource resource,
IlvActivity activity)
Creates an
IlvGeneralReservation object from the given
parameters. |
Constructor and Description |
---|
ReservationUserPropertyEvent(IlvReservation reservation,
String property,
Object oldValue,
Object newValue,
boolean aboutToChangeEvent)
Creates a new
ReservationUserPropertyEvent generated by the
specified reservation. |
Modifier and Type | Class and Description |
---|---|
class |
IlvTableReservation
An
IlvAbstractReservation implementation that
works with an IlvTableGanttModel . |
Modifier and Type | Method and Description |
---|---|
void |
IlvTableGanttModel.addReservation(IlvReservation newReservation)
Adds a
newReservation to the data model. |
boolean |
IlvTableGanttModel.contains(IlvReservation reservation)
Returns whether the specified reservation is a member of the data model.
|
void |
IlvTableGanttModel.removeReservation(IlvReservation reservation)
Removes the specified
reservation from the data model. |
Modifier and Type | Method and Description |
---|---|
Comparator<IlvReservation> |
IlvActivityReservationsProperty.getSortingCriterion()
Returns the sorting criterion for the reservations belonging to a single
activity.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvActivityReservationsProperty.setSortingCriterion(Comparator<IlvReservation> sortingCriterion)
Sets the sorting criterion for the reservations belonging to a single
activity, as reported by
IlvActivityReservationsProperty.getValue(Object) . |
Modifier and Type | Method and Description |
---|---|
protected IlvReservation |
IlvSimpleReservationReader.createReservation(IlvResource resource,
IlvActivity activity)
Creates an
IlvSimpleReservation with the specified parameters. |
protected IlvReservation |
IlvGeneralReservationReader.createReservation(IlvResource resource,
IlvActivity activity)
Creates an
IlvGeneralReservation with the specified parameters. |
IlvReservation |
IlvSimpleReservationReader.readReservation(Element elem,
IlvGanttDocumentReader.Context readContext)
Reads an
IlvSimpleReservation from a given Element . |
IlvReservation |
IlvReservationReader.readReservation(Element elem,
IlvGanttDocumentReader.Context readContext)
Reads a reservation from a given
Element . |
IlvReservation |
IlvGeneralReservationReader.readReservation(Element elem,
IlvGanttDocumentReader.Context readContext)
Reads an
IlvGeneralReservation from a given Element . |
Modifier and Type | Method and Description |
---|---|
void |
IlvSimpleReservationWriter.writeReservation(Element elem,
IlvReservation reservation,
IlvGanttDocumentWriter.Context writeContext)
Writes an
IlvSimpleReservation to a given
Element . |
void |
IlvReservationWriter.writeReservation(Element elem,
IlvReservation reservation,
IlvGanttDocumentWriter.Context writeContext)
Writes a reservation to a given
Element . |
void |
IlvGeneralReservationWriter.writeReservation(Element elem,
IlvReservation reservation,
IlvGanttDocumentWriter.Context writeContext)
Writes an
IlvGeneralReservation to a given Element . |
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.
|
© Copyright Rogue Wave Software, Inc. 1997, 2018. All Rights Reserved.