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.graphic |
Provides the Gantt sheet component
that displays activities over time.
|
ilog.views.gantt.graphic.grid |
Provides the classes used to render the vertical and
horizontal grids 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.
|
ilog.views.gantt.model.table |
Contains a Gantt data model implementation that connects to Swing
TableModel
instances. |
ilog.views.gantt.print |
Defines classes and interfaces for printing the content of an
IlvGanttChart or an IlvScheduleChart . |
ilog.views.gantt.scale |
Provides the Timescale component.
|
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.schedule |
Contains the main Schedule Data chart classes that display numerical information
derived from Gantt data models.
|
Modifier and Type | Method and Description |
---|---|
IlvTimeInterval |
IlvActivity.getTimeInterval()
Returns the time span between the start time and end time of the activity
as an interval.
|
IlvTimeInterval |
IlvTimeScrollable.getVisibleInterval()
Returns the time interval displayed by the time scrollable.
|
IlvTimeInterval |
IlvJScrollGanttSheet.getVisibleInterval()
Returns the time interval displayed by the sheet.
|
IlvTimeInterval |
IlvHierarchyChart.getVisibleInterval()
Returns the time interval displayed by the chart.
|
IlvTimeInterval |
IlvGanttConfiguration.getVisibleInterval()
Returns the time interval displayed by the configuration and its associated
time scrollable objects. |
IlvTimeInterval |
IlvBasicTimeScrollSupport.getVisibleInterval()
Returns the time interval.
|
IlvTimeInterval |
IlvTimeInterval.intersection(IlvTimeInterval interval)
Returns the intersection of the specified time interval with this one.
|
static IlvTimeInterval |
IlvTimeScrollUtil.trimInterval(Date start,
IlvDuration duration,
Date min,
Date max)
Deprecated.
Beginning with Rogue Wave JViews 8.5, use the
IlvTimeScrollUtil.trimInterval(Date, IlvDuration, Date, Date, IlvDuration)
method instead. |
static IlvTimeInterval |
IlvTimeScrollUtil.trimInterval(Date start,
IlvDuration duration,
Date min,
Date max,
IlvDuration minDuration)
Constrains the specified time interval to fit within the specified
minimum/maximum range.
|
static IlvTimeInterval |
IlvTimeScrollUtil.trimInterval(IlvTimeScrollable scrollable,
Date start,
IlvDuration duration)
Constrains the specified time interval to fit within the specified
scrollable's min/max range. |
IlvTimeInterval |
IlvTimeInterval.union(IlvTimeInterval interval)
Returns the union of the specified time interval with this one.
|
Modifier and Type | Method and Description |
---|---|
IlvActivity |
IlvActivityFactory.createActivity(IlvTimeInterval interval)
Creates an
IlvActivity object with the given parameter. |
IlvTimeInterval |
IlvTimeInterval.intersection(IlvTimeInterval interval)
Returns the intersection of the specified time interval with this one.
|
boolean |
IlvTimeInterval.overlaps(IlvTimeInterval interval)
Returns
true if the specified time interval overlaps this one. |
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.
|
void |
IlvActivity.setTimeInterval(IlvTimeInterval interval)
Sets the start time and end time of the activity.
|
static void |
IlvTimeScrollUtil.trimInterval(IlvTimeInterval interval,
Date min,
Date max)
Deprecated.
Beginning with Rogue Wave JViews 8.5, use the
IlvTimeScrollUtil.trimInterval(IlvTimeInterval, Date, Date, IlvDuration)
method instead. |
static void |
IlvTimeScrollUtil.trimInterval(IlvTimeInterval interval,
Date min,
Date max,
IlvDuration minDuration)
Constrains the specified time interval to fit within the specified
minimum/maximum range.
|
static void |
IlvTimeScrollUtil.trimInterval(IlvTimeScrollable scrollable,
IlvTimeInterval interval)
Constrains the specified time interval to fit within the specified
scrollable's min/max range. |
IlvTimeInterval |
IlvTimeInterval.union(IlvTimeInterval interval)
Returns the union of the specified time interval with this one.
|
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 |
---|---|
IlvTimeInterval |
ActivityTimeIntervalEvent.getNewTimeInterval()
Returns the activity's new time interval.
|
IlvTimeInterval |
ActivityTimeIntervalEvent.getOldTimeInterval()
Returns the activity's old time interval.
|
Modifier and Type | Method and Description |
---|---|
void |
ActivityTimeIntervalEvent.setNewTimeInterval(IlvTimeInterval interval)
Sets the activity's proposed new time interval.
|
Constructor and Description |
---|
ActivityTimeIntervalEvent(IlvActivity activity,
IlvTimeInterval oldInterval,
IlvTimeInterval newInterval,
boolean aboutToChangeEvent)
Constructs a new
ActivityTimeIntervalEvent generated
by the specified activity and with the specified old and new
time interval values. |
Modifier and Type | Method and Description |
---|---|
IlvTimeInterval |
IlvGanttSheet.getVisibleInterval()
Returns the time interval displayed by the Gantt sheet.
|
Modifier and Type | Method and Description |
---|---|
protected IlvTimeInterval |
IlvVerticalGanttGrid.getDrawingInterval(Graphics dst,
IlvGanttGridContext context)
Returns the time interval of the drawing rectangle.
|
Modifier and Type | Method and Description |
---|---|
protected IlvTimeInterval |
IlvSimpleActivity.computeTimeIntervalFromChildren()
Calculates this activity's time interval from its children.
|
IlvTimeInterval |
IlvSimpleActivity.getTimeInterval()
Returns the time span between the start time and end time of the activity
as an interval.
|
Modifier and Type | Method and Description |
---|---|
IlvActivity |
IlvSimpleActivityFactory.createActivity(IlvTimeInterval interval)
Creates an
IlvSimpleActivity object from the given parameters. |
protected ActivityTimeIntervalEvent |
IlvAbstractActivity.fireTimeIntervalAboutToChange(IlvTimeInterval newInterval)
Fires a
timeIntervalAboutToChange event and returns the event
after dispatching it to all listeners. |
protected void |
IlvAbstractActivity.fireTimeIntervalChanged(IlvTimeInterval oldInterval)
Fires a
timeIntervalChanged event. |
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.
|
void |
IlvSimpleActivity.setTimeInterval(IlvTimeInterval interval)
Sets the start time and end time of the activity.
|
protected void |
IlvSimpleActivity.updateTimeInterval(IlvTimeInterval newInterval)
Updates the start time and end time of the activity, as a result of an
automatic computation.
|
Constructor and Description |
---|
IlvSimpleActivity(String id,
String name,
IlvTimeInterval interval)
Creates a new
IlvSimpleActivity from the specified ID,
name, and time interval. |
Modifier and Type | Method and Description |
---|---|
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 |
---|---|
IlvActivity |
IlvGeneralActivity.Factory.createActivity(IlvTimeInterval interval)
Creates an
IlvGeneralActivity object from the given parameters. |
void |
IlvGeneralActivity.setTimeInterval(IlvTimeInterval interval)
Overridden to take into account the
IlvGeneralActivity.getTimeProperties() result. |
Constructor and Description |
---|
IlvGeneralActivity(String id,
String name,
IlvTimeInterval interval)
Creates a new
IlvGeneralActivity from the specified ID,
name, and time interval. |
Modifier and Type | Method and Description |
---|---|
IlvTimeInterval |
IlvTableActivity.getTimeInterval()
Returns the time span between the start time and end time of the activity
as an interval.
|
Modifier and Type | Method and Description |
---|---|
Iterator |
IlvTableGanttModel.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.
|
void |
IlvTableActivity.setTimeInterval(IlvTimeInterval interval)
Sets the start time and end time of the activity.
|
Constructor and Description |
---|
IlvTableActivity(String id,
String name,
IlvTimeInterval interval)
Creates a new
IlvTableActivity from the specified ID, name,
and time interval. |
Modifier and Type | Method and Description |
---|---|
protected IlvTimeInterval |
IlvGanttPrintableDocument.computeEntireRangeForEmptyModel()
Returns the range to be printed for an empty model.
|
protected IlvTimeInterval |
IlvGanttPrintableDocument.expandBeautifying(IlvTimeInterval interval)
Beautifies a time interval by expanding it enough so that it begins and
ends on an even time increment.
|
protected IlvTimeInterval |
IlvGanttPrintableDocument.expandIncludingAllGraphics(IlvTimeInterval interval,
IlvUnit.Measure hspace)
Expands a time interval so that it covers all graphic objects in the view,
for a transformer computed to match the given horizontal space.
|
IlvTimeInterval |
IlvGanttPrintableDocument.getEffectiveRange()
Returns the time interval from the start date of the first page in a band
to the last date of the last page in a band.
|
IlvTimeInterval |
IlvGanttPrintableDocument.getEntireRange()
Returns the range to be printed, corresponding to the entire contents of
the Gantt model.
|
Modifier and Type | Method and Description |
---|---|
protected IlvTimeInterval |
IlvGanttPrintableDocument.expandBeautifying(IlvTimeInterval interval)
Beautifies a time interval by expanding it enough so that it begins and
ends on an even time increment.
|
protected IlvTimeInterval |
IlvGanttPrintableDocument.expandIncludingAllGraphics(IlvTimeInterval interval,
IlvUnit.Measure hspace)
Expands a time interval so that it covers all graphic objects in the view,
for a transformer computed to match the given horizontal space.
|
Modifier and Type | Method and Description |
---|---|
IlvTimeInterval |
IlvTimeScale.getVisibleInterval()
Returns the time interval displayed by the scale.
|
Modifier and Type | Method and Description |
---|---|
protected IlvTimeInterval |
IlvGanttServletSupport.getDataInterval(IlvHierarchyChart chart,
IlvServletRequestParameters params)
Returns the time interval of the chart's data model.
|
Modifier and Type | Method and Description |
---|---|
IlvTimeInterval |
IlvTimeScrollBar.getVisibleInterval()
Returns the time interval displayed by the scroll bar.
|
Modifier and Type | Method and Description |
---|---|
IlvTimeInterval |
IlvScheduleDataChart.getVisibleInterval()
Returns the time interval displayed by the chart.
|
© Copyright Rogue Wave Software, Inc. 1997, 2018. All Rights Reserved.