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.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.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.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.
|
Modifier and Type | Method and Description |
---|---|
IlvActivity |
IlvActivityFactory.createActivity(IlvTimeInterval interval)
Creates an
IlvActivity object with the given parameter. |
IlvActivity |
IlvReservation.getActivity()
Returns the activity for this reservation.
|
IlvActivity |
IlvGanttModel.getChildActivity(IlvActivity parent,
int index)
Returns the child of the specified parent activity at index
index . |
IlvActivity |
IlvConstraint.getFromActivity()
Returns the source or From activity for this constraint.
|
IlvActivity |
IlvGanttModel.getParentActivity(IlvActivity activity)
Returns the parent activity of the specified activity, or
null
if the activity is the root activity of the data model. |
IlvActivity |
IlvGanttModel.getRootActivity()
Returns the root activity of the data model or
null if the
data model contains no activities. |
IlvActivity[] |
IlvGanttChart.getSelectedActivities()
Retrieves the activities that are selected in the Gantt chart.
|
IlvActivity |
IlvConstraint.getToActivity()
Returns the target or To activity for this constraint.
|
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.
|
Iterator<IlvActivity> |
IlvGanttModel.activityPreorderIterator(IlvActivity parent)
Returns an iterator that will traverse the parent activity and all of
its descendants in preorder.
|
static Iterator<IlvActivity> |
IlvGanttModelUtil.activityPreorderIterator(IlvGanttModel model)
Returns an iterator that will traverse all of the activities of a data
model in preorder.
|
Iterator<IlvActivity> |
IlvGanttModel.childActivityIterator(IlvActivity parent)
Returns an iterator over the parent activity's children.
|
Modifier and Type | Method and Description |
---|---|
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,
IlvActivity parent)
Returns an iterator that will traverse the parent activity and
all of its descendants in postorder.
|
Iterator<IlvActivity> |
IlvGanttModel.activityPreorderIterator(IlvActivity parent)
Returns an iterator that will traverse the parent activity and all of
its descendants in preorder.
|
void |
IlvGanttModel.addActivity(IlvActivity newActivity,
IlvActivity parent)
Append
newActivity as the last child of the specified
parent activity. |
void |
IlvGanttModel.addActivity(IlvActivity newActivity,
IlvActivity parent,
int index)
Adds
newActivity as a child of parent activity
at the specified location in its list of child activities. |
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.checkValidNonNullActivity(IlvActivity activity)
Checks that the specified activity is not
null . |
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. |
Iterator<IlvActivity> |
IlvGanttModel.childActivityIterator(IlvActivity parent)
Returns an iterator over the parent activity's children.
|
Iterator<IlvConstraint> |
IlvGanttModel.constraintIteratorFromActivity(IlvActivity fromActivity)
Returns an iterator over the constraints in the data model that have the
specified activity as their source or from activity.
|
Iterator<IlvConstraint> |
IlvGanttModel.constraintIteratorToActivity(IlvActivity toActivity)
Returns an iterator over the constraints in the data model that have the
specified activity as their target or to activity.
|
IlvConstraint |
IlvConstraintFactory.createConstraint(IlvActivity from,
IlvActivity to,
IlvConstraintType type)
Creates an
IlvConstraint object from the given parameters. |
IlvReservation |
IlvReservationFactory.createReservation(IlvResource resource,
IlvActivity activity)
Creates an
IlvReservation object from the given parameters. |
IlvActivity |
IlvGanttModel.getChildActivity(IlvActivity parent,
int index)
Returns the child of the specified parent activity at index
index . |
int |
IlvGanttModel.getChildActivityCount(IlvActivity parent)
Returns the number of children of the specified parent activity.
|
int |
IlvGanttModel.getChildActivityIndex(IlvActivity parent,
IlvActivity child)
Returns the index of the specified child in the parent activity's list
of children.
|
IlvActivity |
IlvGanttModel.getParentActivity(IlvActivity activity)
Returns the parent activity of the specified activity, or
null
if the activity is the root activity of the data model. |
int |
IlvGanttModel.getParentActivityIndex(IlvActivity activity)
Returns the index of the specified activity within its parent activity.
|
void |
IlvGanttModel.moveActivity(IlvActivity activity,
IlvActivity newParent,
int newIndex)
Moves the specified activity from its current location in the tree to a
new location.
|
void |
IlvGanttModel.removeActivity(IlvActivity activity)
Removes the specified child activity from its parent.
|
void |
IlvGanttModel.removeActivity(IlvActivity parent,
int index)
Removes the child activity from parent that is at the specified
location in its list of child activities.
|
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.
|
void |
IlvGanttChart.select(IlvActivity activity,
boolean selected)
Selects or deselects an activity.
|
void |
IlvGanttModel.setRootActivity(IlvActivity root)
Sets the root activity of the data model.
|
Modifier and Type | Method and Description |
---|---|
IlvActivity |
ActivitySelectionEvent.getActivity()
Returns the activity whose selection status has changed.
|
IlvActivity |
ActivityPropertyEvent.getActivity()
Returns the activity where this event originated.
|
IlvActivity |
ActivityMovedEvent.getActivity()
Returns the activity that has been moved.
|
IlvActivity |
ActivityEvent.getActivity()
Returns the activity where this event originated.
|
IlvActivity |
ActivitiesRemovedEvent.getActivity()
Returns the activity that identifies the portion of the tree hierarchy
that has been modified.
|
IlvActivity |
ActivitiesInsertedEvent.getActivity()
Returns the activity that identifies the portion of the tree hierarchy
that has been modified.
|
IlvActivity |
ActivityMovedEvent.getNewParent()
Returns the activity's new parent, after the activity was moved.
|
IlvActivity |
ActivityMovedEvent.getOldParent()
Returns the activity's previous parent, before the activity was moved.
|
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. |
ActivityIDEvent(IlvActivity activity,
String oldID,
String newID,
boolean aboutToChangeEvent)
Constructs a new
ActivityIDEvent generated
by the specified activity and with the specified old and new
id values. |
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. |
ActivityNameEvent(IlvActivity activity,
String oldName,
String newName,
boolean aboutToChangeEvent)
Constructs a new
ActivityNameEvent generated
by the specified activity and with the specified old and new
name values. |
ActivityPropertyEvent(IlvActivity activity,
Object oldValue,
Object newValue,
boolean aboutToChangeEvent)
Constructs a new
ActivityPropertyEvent generated by the
specified activity. |
ActivitySelectionEvent(IlvActivity activity,
boolean selected)
Creates a new selection event for the specified activity.
|
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. |
Constructor and Description |
---|
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. |
Modifier and Type | Method and Description |
---|---|
IlvActivity |
IlvActivityTileLayout.GraphicBounds.getActivity()
Returns the activity that the activity graphic is rendering.
|
IlvActivity |
IlvActivityGraphic.getActivity()
Gets the activity represented by the graphic.
|
Modifier and Type | Method and Description |
---|---|
Iterator<IlvActivityGraphic> |
IlvGanttSheet.activityGraphicsIterator(IlvActivity activity)
Returns an iterator over the
activity graphics
representing the specified activity in the Gantt sheet. |
IlvActivityRenderer |
IlvDefaultActivityRendererFactory.createActivityRenderer(IlvActivity activity)
Creates a renderer for the specified activity.
|
IlvActivityRenderer |
IlvActivityRendererFactory.createActivityRenderer(IlvActivity activity)
Creates a renderer for the specified activity.
|
IlvActivityGraphic |
IlvGanttSheet.getActivityGraphic(IlvActivity activity)
Returns the first
activity graphic representing
the specified activity in the Gantt sheet. |
IlvActivityGraphic |
IlvGanttRow.getActivityGraphic(IlvActivity activity)
Returns the activity graphic representing the given activity.
|
void |
IlvGanttSheet.setActivityRenderer(IlvActivity activity,
IlvActivityRenderer renderer)
Changes the activity renderer for all the
activity graphics
representing the specified activity in the Gantt sheet. |
Modifier and Type | Method and Description |
---|---|
IlvActivity |
IlvActivityGraphicSelection.getActivity()
Returns the activity that is selected.
|
Modifier and Type | Interface and Description |
---|---|
interface |
IlvPropertyHolderActivity
The interface
IlvPropertyHolderActivity denotes an activity which
has a number of specific time points. |
Modifier and Type | Class and Description |
---|---|
class |
IlvAbstractActivity
IlvAbstractActivity is the superclass of all IlvActivity
implementations. |
class |
IlvNullActivity
IlvNullActivity is a special implementation of the
IlvActivity interface that is used as
the root activity
of a Gantt data model when a root
has not been explicitly specified. |
class |
IlvSimpleActivity
IlvSimpleActivity is a relatively simple, memory-based
implementation of the IlvActivity interface that can be
extended in a straightforward manner for more complex needs. |
Modifier and Type | Method and Description |
---|---|
IlvActivity |
IlvSimpleActivityFactory.createActivity(IlvTimeInterval interval)
Creates an
IlvSimpleActivity object from the given parameters. |
IlvActivity |
IlvSimpleReservation.getActivity()
Returns the activity for this reservation.
|
IlvActivity |
IlvConstraintCycleException.getActivity()
Returns the activity at which the constraint cycle was detected.
|
IlvActivity |
IlvDefaultGanttModel.getChildActivity(IlvActivity parent,
int index)
Returns the child of the specified parent activity at index
index . |
IlvActivity |
IlvSimpleConstraint.getFromActivity()
Returns the source or From activity for this constraint.
|
IlvActivity |
IlvDefaultGanttModel.getParentActivity(IlvActivity activity)
Returns the parent activity of the specified activity or
null
if the activity is the root activity of the data model. |
IlvActivity |
IlvDefaultGanttModel.getRootActivity()
Returns the root activity of the data model or
null if the
data model contains no activities. |
IlvActivity |
IlvSimpleConstraint.getToActivity()
Returns the target or To activity for this constraint.
|
Modifier and Type | Method and Description |
---|---|
Iterator<IlvActivity> |
IlvAbstractGanttModel.activityPreorderIterator()
Returns an iterator that traverses all activities in preorder.
|
Iterator<IlvActivity> |
IlvAbstractGanttModel.activityPreorderIterator(IlvActivity parent)
Returns an iterator that will traverse the parent activity and all of
its descendants in preorder.
|
Iterator<IlvActivity> |
IlvDefaultGanttModel.childActivityIterator(IlvActivity parent)
Returns an iterator over the parent activity's children.
|
Iterator<IlvActivity> |
IlvAbstractGanttModel.childActivityIterator(IlvActivity parent)
Returns an iterator over the parent activity's children.
|
Modifier and Type | Method and Description |
---|---|
Iterator<IlvActivity> |
IlvAbstractGanttModel.activityPreorderIterator(IlvActivity parent)
Returns an iterator that will traverse the parent activity and all of
its descendants in preorder.
|
void |
IlvAbstractGanttModel.addActivity(IlvActivity newActivity,
IlvActivity parent)
Appends
newActivity as the last child of the
parent activity. |
void |
IlvDefaultGanttModel.addActivity(IlvActivity newActivity,
IlvActivity parent,
int index)
Adds
newActivity as a child of parent activity
at the specified location in its list of child activities. |
Iterator<IlvActivity> |
IlvDefaultGanttModel.childActivityIterator(IlvActivity parent)
Returns an iterator over the parent activity's children.
|
Iterator<IlvActivity> |
IlvAbstractGanttModel.childActivityIterator(IlvActivity parent)
Returns an iterator over the parent activity's children.
|
Iterator<IlvConstraint> |
IlvDefaultGanttModel.constraintIteratorFromActivity(IlvActivity fromActivity)
Returns an iterator over the constraints in the data model that have the
specified activity as their source or from activity.
|
Iterator<IlvConstraint> |
IlvDefaultGanttModel.constraintIteratorToActivity(IlvActivity toActivity)
Returns an iterator over the constraints in the data model that have the
specified activity as their target or to activity.
|
IlvConstraint |
IlvSimpleConstraintFactory.createConstraint(IlvActivity from,
IlvActivity to,
IlvConstraintType type)
Creates an
IlvSimpleConstraint object from the given parameters. |
IlvReservation |
IlvSimpleReservationFactory.createReservation(IlvResource resource,
IlvActivity activity)
Creates an
IlvSimpleReservation from the given parameters. |
protected void |
IlvAbstractGanttModel.fireActivitiesInserted(IlvActivity parent,
int[] childIndices)
Fires an
ActivitiesInsertedEvent . |
protected void |
IlvAbstractGanttModel.fireActivitiesInserted(IlvActivity parent,
List<IlvActivity> children)
Fires an
ActivitiesInsertedEvent . |
protected void |
IlvAbstractGanttModel.fireActivitiesRemoved(IlvActivity parent,
List<IlvActivity> children,
int[] childIndices)
Fires an
ActivitiesRemovedEvent . |
protected void |
IlvAbstractGanttModel.fireActivitiesRemoved(IlvActivity parent,
List<IlvActivity> children,
List<Integer> childIndices)
Fires an
ActivitiesRemovedEvent . |
protected void |
IlvAbstractGanttModel.fireActivityInserted(IlvActivity parent,
IlvActivity child)
Fires an
ActivitiesInsertedEvent . |
protected void |
IlvAbstractGanttModel.fireActivityMoved(IlvActivity activity,
IlvActivity oldParent,
int oldIndex,
IlvActivity newParent,
int newIndex)
Fires an
ActivityMovedEvent . |
protected void |
IlvAbstractGanttModel.fireActivityRemoved(IlvActivity parent,
IlvActivity child,
int childIndex)
Fires an
ActivitiesRemovedEvent . |
IlvActivity |
IlvDefaultGanttModel.getChildActivity(IlvActivity parent,
int index)
Returns the child of the specified parent activity at index
index . |
int |
IlvDefaultGanttModel.getChildActivityCount(IlvActivity parent)
Returns the number of children of the specified parent activity.
|
int |
IlvDefaultGanttModel.getChildActivityIndex(IlvActivity parent,
IlvActivity child)
Returns the index of the specified child in the parent activity's list
of children.
|
IlvActivity |
IlvDefaultGanttModel.getParentActivity(IlvActivity activity)
Returns the parent activity of the specified activity or
null
if the activity is the root activity of the data model. |
int |
IlvDefaultGanttModel.getParentActivityIndex(IlvActivity activity)
Returns the index of the specified activity within its parent activity.
|
void |
IlvDefaultGanttModel.moveActivity(IlvActivity activity,
IlvActivity newParent,
int newIndex)
Moves the specified activity from its current location in the tree to a
new location.
|
void |
IlvDefaultGanttModel.removeActivity(IlvActivity activity)
Removes the specified child activity from its parent.
|
void |
IlvDefaultGanttModel.removeActivity(IlvActivity parent,
int index)
Removes the child activity from parent that is at the specified
location in its list of child activities.
|
Iterator<IlvReservation> |
IlvDefaultGanttModel.reservationIterator(IlvActivity activity)
Returns an iterator over all the reservations in the data model
that are associated with the specified activity.
|
void |
IlvDefaultGanttModel.setRootActivity(IlvActivity root)
Sets the root activity of the data model.
|
Modifier and Type | Method and Description |
---|---|
protected void |
IlvAbstractGanttModel.fireActivitiesInserted(IlvActivity parent,
List<IlvActivity> children)
Fires an
ActivitiesInsertedEvent . |
protected void |
IlvAbstractGanttModel.fireActivitiesRemoved(IlvActivity parent,
List<IlvActivity> children,
int[] childIndices)
Fires an
ActivitiesRemovedEvent . |
protected void |
IlvAbstractGanttModel.fireActivitiesRemoved(IlvActivity parent,
List<IlvActivity> children,
List<Integer> childIndices)
Fires an
ActivitiesRemovedEvent . |
Constructor and Description |
---|
IlvConstraintCycleException(IlvActivity activity)
Creates a new exception that indicates that a constraint cycle was detected
at the specified activity.
|
IlvSimpleConstraint(IlvActivity fromActivity,
IlvActivity toActivity,
IlvConstraintType type)
Creates a new
IlvSimpleConstraint from the specified
from-activity, to-activity, and type. |
IlvSimpleReservation(IlvResource resource,
IlvActivity activity)
Creates a new
IlvSimpleReservation that assigns the
specified resource and activity . |
Modifier and Type | Method and Description |
---|---|
IlvActivity |
IlvFilterGanttModel.getChildActivity(IlvActivity parent,
int index)
Returns the child of the specified parent activity at index
index . |
IlvActivity |
IlvBasicFilterGanttModel.getChildActivity(IlvActivity parent,
int index)
Returns the child of the specified parent activity at index
index . |
IlvActivity |
IlvFilterGanttModel.getParentActivity(IlvActivity activity)
Returns the parent activity of the specified activity, or
null
if the activity is the root activity of the data model. |
IlvActivity |
IlvFilterGanttModel.getRootActivity()
Returns the root activity of the data model, or
null if the
data model contains no activities. |
IlvActivity |
IlvBasicFilterGanttModel.getRootActivity()
Returns the root activity of the data model, or
null if the
data model contains no activities. |
Modifier and Type | Method and Description |
---|---|
IlvFilter<IlvActivity> |
IlvBasicFilterGanttModel.getActivityFilter()
Returns the activity filter set on the encapsulated
data model.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvFilterGanttModel.addActivity(IlvActivity newActivity,
IlvActivity parent,
int index)
Adds
newActivity as a child of parent activity
at the specified location in its list of child activities. |
void |
IlvBasicFilterGanttModel.addActivity(IlvActivity newActivity,
IlvActivity parent,
int index)
Adds
newActivity as a child of parent activity
at the specified location in its list of child activities. |
Iterator<IlvConstraint> |
IlvFilterGanttModel.constraintIteratorFromActivity(IlvActivity fromActivity)
Returns an iterator over the constraints in the data model that have the
specified activity as their source or from activity.
|
Iterator<IlvConstraint> |
IlvBasicFilterGanttModel.constraintIteratorFromActivity(IlvActivity fromActivity)
Returns an iterator over the constraints in the data model that have the
specified activity as their source or from activity.
|
Iterator<IlvConstraint> |
IlvFilterGanttModel.constraintIteratorToActivity(IlvActivity toActivity)
Returns an iterator over the constraints in the data model that have the
specified activity as their target or to activity.
|
Iterator<IlvConstraint> |
IlvBasicFilterGanttModel.constraintIteratorToActivity(IlvActivity toActivity)
Returns an iterator over the constraints in the data model that have the
specified activity as their target or to activity.
|
IlvActivity |
IlvFilterGanttModel.getChildActivity(IlvActivity parent,
int index)
Returns the child of the specified parent activity at index
index . |
IlvActivity |
IlvBasicFilterGanttModel.getChildActivity(IlvActivity parent,
int index)
Returns the child of the specified parent activity at index
index . |
int |
IlvFilterGanttModel.getChildActivityCount(IlvActivity parent)
Returns the number of children of the specified parent activity.
|
int |
IlvBasicFilterGanttModel.getChildActivityCount(IlvActivity parent)
Returns the number of children of the specified parent activity.
|
int |
IlvFilterGanttModel.getChildActivityIndex(IlvActivity parent,
IlvActivity child)
Returns the index of the specified child in the parent activity's list
of children.
|
int |
IlvBasicFilterGanttModel.getChildActivityIndex(IlvActivity parent,
IlvActivity child)
Returns the index of the specified child in the parent activity's list
of children.
|
IlvActivity |
IlvFilterGanttModel.getParentActivity(IlvActivity activity)
Returns the parent activity of the specified activity, or
null
if the activity is the root activity of the data model. |
int |
IlvFilterGanttModel.getParentActivityIndex(IlvActivity activity)
Returns the index of the specified activity within its parent activity.
|
int |
IlvBasicFilterGanttModel.getParentActivityIndex(IlvActivity activity)
Returns the index of the specified activity within its parent activity.
|
void |
IlvFilterGanttModel.moveActivity(IlvActivity activity,
IlvActivity newParent,
int newIndex)
Moves the specified activity from its current location in the tree to a
new location.
|
void |
IlvBasicFilterGanttModel.moveActivity(IlvActivity activity,
IlvActivity newParent,
int newIndex)
This method throws an
UnsupportedOperationException because
IlvBasicFilterGanttModel does not support activities that are moved
within the hierarchy. |
void |
IlvFilterGanttModel.removeActivity(IlvActivity activity)
Removes the specified child
activity from its parent. |
void |
IlvBasicFilterGanttModel.removeActivity(IlvActivity activity)
Removes the specified child
activity from its parent. |
void |
IlvFilterGanttModel.removeActivity(IlvActivity parent,
int index)
Removes the child activity from
parent that is at the
specified location in its list of child activities. |
void |
IlvBasicFilterGanttModel.removeActivity(IlvActivity parent,
int index)
Removes the child activity from
parent that is at the
specified location in its list of child activities. |
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.
|
void |
IlvFilterGanttModel.setRootActivity(IlvActivity root)
Sets the root activity of the data model.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvBasicFilterGanttModel.setActivityFilter(IlvFilter<IlvActivity> filter)
Sets the specified activity filter on the encapsulated
data model.
|
Constructor and Description |
---|
IlvBasicFilterGanttModel(IlvGanttModel filteredModel,
IlvFilter<IlvActivity> activityFilter,
IlvFilter<IlvResource> resourceFilter)
Creates a new filtering model that encapsulates the specified filtered
model.
|
Modifier and Type | Class and Description |
---|---|
class |
IlvGeneralActivity
IlvGeneralActivity is an extension of IlvSimpleActivity
that adds support for user-defined properties. |
Modifier and Type | Method and Description |
---|---|
IlvActivity |
IlvGeneralActivity.Factory.createActivity(IlvTimeInterval interval)
Creates an
IlvGeneralActivity object from the given parameters. |
Modifier and Type | Method and Description |
---|---|
IlvConstraint |
IlvGeneralConstraint.Factory.createConstraint(IlvActivity from,
IlvActivity to,
IlvConstraintType type)
Creates an
IlvGeneralConstraint object from the given parameters. |
IlvReservation |
IlvGeneralReservation.Factory.createReservation(IlvResource resource,
IlvActivity activity)
Creates an
IlvGeneralReservation object from the given
parameters. |
Constructor and Description |
---|
ActivityUserPropertyEvent(IlvActivity activity,
String property,
Object oldValue,
Object newValue,
boolean aboutToChangeEvent)
Creates a new
ActivityUserPropertyEvent generated by the
specified activity. |
IlvGeneralConstraint(IlvActivity fromActivity,
IlvActivity toActivity,
IlvConstraintType type)
Creates a new
IlvGeneralConstraint from the specified
from-activity, to-activity, and type. |
IlvGeneralReservation(IlvResource resource,
IlvActivity activity)
Creates a new
IlvGeneralReservation that assigns the
specified resource to the specified activity . |
Modifier and Type | Class and Description |
---|---|
class |
IlvTableActivity
An
IlvAbstractActivity implementation that
works with an IlvTableGanttModel . |
Modifier and Type | Method and Description |
---|---|
IlvActivity |
IlvTableReservation.getActivity()
Returns the activity for this reservation.
|
IlvActivity |
IlvTableGanttModel.getChildActivity(IlvActivity parent,
int index)
Returns the child of the specified parent activity at the specified
index . |
IlvActivity |
IlvTableConstraint.getFromActivity()
Returns the source or
From activity for this constraint. |
IlvActivity |
IlvTableGanttModel.getParentActivity(IlvActivity activity)
Returns the parent activity of the specified activity or
null
if the activity is the root activity of the data model. |
IlvActivity |
IlvTableGanttModel.getRootActivity()
Returns the root activity of the data model or
null if the
data model contains no activities. |
IlvActivity |
IlvTableConstraint.getToActivity()
Returns the target or
To activity for this constraint. |
Modifier and Type | Method and Description |
---|---|
void |
IlvTableGanttModel.addActivity(IlvActivity newActivity,
IlvActivity parent,
int index)
Adds
newActivity as a child of the parent
activity at the specified location in its list of child activities. |
Iterator |
IlvTableGanttModel.constraintIteratorFromActivity(IlvActivity fromActivity)
Returns an iterator over the constraints in the data model that have the
specified activity as their source or from the activity.
|
Iterator |
IlvTableGanttModel.constraintIteratorToActivity(IlvActivity toActivity)
Returns an iterator over the constraints in the data model that have the
specified activity as their target or the to activity.
|
IlvActivity |
IlvTableGanttModel.getChildActivity(IlvActivity parent,
int index)
Returns the child of the specified parent activity at the specified
index . |
int |
IlvTableGanttModel.getChildActivityCount(IlvActivity parent)
Returns the number of children of the specified parent activity.
|
int |
IlvTableGanttModel.getChildActivityIndex(IlvActivity parent,
IlvActivity child)
Returns the index of the specified child in the list of children of the
parent activity.
|
IlvActivity |
IlvTableGanttModel.getParentActivity(IlvActivity activity)
Returns the parent activity of the specified activity or
null
if the activity is the root activity of the data model. |
int |
IlvTableGanttModel.getParentActivityIndex(IlvActivity activity)
Returns the index of the specified activity within its parent activity.
|
void |
IlvTableGanttModel.moveActivity(IlvActivity activity,
IlvActivity newParent,
int newIndex)
Moves the specified activity from its current location in the tree
to a new location.
|
void |
IlvTableGanttModel.removeActivity(IlvActivity activity)
Removes the specified child activity from its parent.
|
void |
IlvTableGanttModel.removeActivity(IlvActivity parent,
int index)
Removes the child activity from the parent that is at the
specified location in its list of child activities.
|
Iterator |
IlvTableGanttModel.reservationIterator(IlvActivity activity)
Returns an iterator over all the reservations in the data model that are
associated with the specified activity.
|
void |
IlvTableGanttModel.setRootActivity(IlvActivity root)
This method must not be called.
|
Constructor and Description |
---|
IlvTableConstraint(IlvActivity fromActivity,
IlvActivity toActivity,
IlvConstraintType type)
Creates a new
IlvTableConstraint from the specified
from-activity, to-activity, and type. |
IlvTableReservation(IlvResource resource,
IlvActivity activity)
Creates a new
IlvTableReservation from the specified activity
and resource. |
Modifier and Type | Method and Description |
---|---|
IlvActivity |
IlvPopupMenuActivityContext.getActivity()
Gets the activity of this pop-up menu context
|
Constructor and Description |
---|
IlvPopupMenuActivityContext(IlvPoint point,
JComponent component,
IlvGraphic graphic,
IlvActivity activity,
IlvTransformer transformer,
IlvManagerView view)
Creates a new pop-up menu context for graphics representing
IlvActivity . |
Modifier and Type | Method and Description |
---|---|
IlvActivity |
IlvMonthPanel.getActivity(Point point)
Returns the activity, milestone, or holiday that is displayed at the specified
point . |
IlvActivity |
IlvHourlyActivitySheet.getActivity(Point point)
Returns the activity or milestone that is displayed at the specified
point . |
IlvActivity |
IlvDayView.getActivity(Point point)
Returns the activity, milestone, or holiday that is displayed at the
specified
point . |
Modifier and Type | Method and Description |
---|---|
void |
IlvMilestoneCalendarRenderer.draw(Graphics g,
IlvActivity milestone,
boolean isSelected,
Rectangle rect,
Color background,
ComponentOrientation orientation)
This method is called by an
IlvMonthPanel to render a milestone
within the month grid. |
void |
IlvDefaultMilestoneCalendarRenderer.draw(Graphics g,
IlvActivity milestone,
boolean isSelected,
Rectangle rect,
Color background,
ComponentOrientation orientation)
This method is called by an
IlvMonthPanel to render a milestone
within the month grid. |
void |
IlvDefaultActivityCalendarRenderer.draw(Graphics g,
IlvActivity activity,
boolean isSelected,
Rectangle rect,
ComponentOrientation orientation,
int startStyle,
int endStyle)
This method is called by an
IlvMonthPanel to render an activity bar
on a single row within the month grid. |
void |
IlvActivityCalendarRenderer.draw(Graphics g,
IlvActivity activity,
boolean isSelected,
Rectangle rect,
ComponentOrientation orientation,
int startStyle,
int endStyle)
This method is called by an
IlvMonthPanel to render an activity bar
on a single row within the month grid. |
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. |
boolean |
IlvMonthView.isSelected(IlvActivity activity)
Returns whether the specified activity is currently selected.
|
boolean |
IlvMonthPanel.isSelected(IlvActivity activity)
Returns whether the specified activity is currently selected.
|
boolean |
IlvDayView.isSelected(IlvActivity activity)
Returns whether the specified activity is currently selected.
|
void |
IlvMonthView.setSelected(IlvActivity activity,
boolean selected)
Selects or deselects the specified activity.
|
void |
IlvMonthPanel.setSelected(IlvActivity activity,
boolean selected)
Selects or deselects the specified activity.
|
void |
IlvDayView.setSelected(IlvActivity activity,
boolean selected)
Selects or deselects the specified activity.
|
Modifier and Type | Method and Description |
---|---|
protected IlvActivity |
IlvSimpleActivityReader.createActivity(String id,
String name,
Date start,
Date end)
Creates an
IlvSimpleActivity with the specified parameters. |
protected IlvActivity |
IlvGeneralActivityReader.createActivity(String id,
String name,
Date start,
Date end)
Creates an
IlvGeneralActivity with the specified parameters. |
IlvActivity |
IlvGanttDocumentReader.Context.getActivity(String id)
Returns the activity with the specified ID that has already been read
from the XML document.
|
IlvActivity |
IlvSimpleActivityReader.readActivity(Element elem,
IlvGanttDocumentReader.Context readContext)
Reads an
IlvSimpleActivity from a given Element . |
IlvActivity |
IlvGeneralActivityReader.readActivity(Element elem,
IlvGanttDocumentReader.Context readContext)
Reads an
IlvGeneralActivity from a given
Element . |
IlvActivity |
IlvActivityReader.readActivity(Element elem,
IlvGanttDocumentReader.Context readContext)
Reads an activity from a given
Element . |
Modifier and Type | Method and Description |
---|---|
protected IlvConstraint |
IlvSimpleConstraintReader.createConstraint(IlvActivity from,
IlvActivity to,
IlvConstraintType type)
Creates an
IlvSimpleConstraint with the specified parameters. |
protected IlvConstraint |
IlvGeneralConstraintReader.createConstraint(IlvActivity from,
IlvActivity to,
IlvConstraintType type)
Creates an
IlvGeneralConstraint with the specified parameters. |
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. |
void |
IlvSimpleActivityWriter.writeActivity(Element elem,
IlvActivity activity,
IlvGanttDocumentWriter.Context writeContext)
Writes an
IlvSimpleActivity to a
given Element . |
void |
IlvGeneralActivityWriter.writeActivity(Element elem,
IlvActivity activity,
IlvGanttDocumentWriter.Context writeContext)
Writes an
IlvGeneralActivity to a given Element . |
void |
IlvActivityWriter.writeActivity(Element elem,
IlvActivity activity,
IlvGanttDocumentWriter.Context writeContext)
Writes an activity to a given
Element . |
© Copyright Rogue Wave Software, Inc. 1997, 2018. All Rights Reserved.