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.swing |
Provides interfaces and classes for rendering and editing
Gantt data in Swing components, such as a tree or table.
|
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 |
---|---|
IlvConstraint |
IlvConstraintFactory.createConstraint(IlvActivity from,
IlvActivity to,
IlvConstraintType type)
Creates an
IlvConstraint object from the given parameters. |
IlvConstraint[] |
IlvHierarchyChart.getSelectedConstraints()
Returns the constraints that are selected in the chart.
|
IlvConstraint[] |
IlvGanttConfiguration.getSelectedConstraints()
Returns the constraints that are currently selected.
|
Modifier and Type | Method and Description |
---|---|
Iterator<IlvConstraint> |
IlvGanttModel.constraintIterator()
Returns an iterator over all of the constraints in the data model.
|
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.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvGanttModel.addConstraint(IlvConstraint newConstraint)
Adds
newConstraint to the 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.checkValidNewConstraint(IlvConstraint constraint,
IlvGanttModel ganttModel)
Checks that the specified constraint is a valid argument for
ganttModel.addConstraint() . |
static void |
IlvGanttModelUtil.checkValidNonNullConstraint(IlvConstraint constraint)
Checks that the specified constraint is not
null . |
boolean |
IlvGanttModel.contains(IlvConstraint constraint)
Returns whether the specified constraint is a member of the data model.
|
void |
IlvGanttModel.removeConstraint(IlvConstraint constraint)
Removes the specified
constraint from the data model. |
void |
IlvHierarchyChart.select(IlvConstraint constraint,
boolean selected)
Selects or deselects a constraint.
|
Modifier and Type | Method and Description |
---|---|
IlvConstraint |
ConstraintRemovedEvent.getConstraint()
Returns the constraint that was removed.
|
IlvConstraint |
ConstraintPropertyEvent.getConstraint()
Returns the constraint where this event originated.
|
IlvConstraint |
ConstraintInsertedEvent.getConstraint()
Returns the constraint which was inserted.
|
IlvConstraint |
ConstraintEvent.getConstraint()
Returns the constraint where this event originated.
|
Constructor and Description |
---|
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. |
ConstraintPropertyEvent(IlvConstraint constraint,
Object oldValue,
Object newValue,
boolean aboutToChangeEvent)
Constructs a new
ConstraintPropertyEvent generated by the
specified constraint. |
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. |
ConstraintTypeEvent(IlvConstraint constraint,
IlvConstraintType oldType,
IlvConstraintType newType,
boolean aboutToChangeEvent)
Constructs a new
ConstraintTypeEvent generated
by the specified constraint and with the specified old and new
type values. |
Modifier and Type | Method and Description |
---|---|
IlvConstraint |
IlvConstraintGraphic.getConstraint()
Returns the associated
constraint of the graphic. |
Modifier and Type | Method and Description |
---|---|
IlvConstraintGraphic |
IlvDefaultConstraintGraphicFactory.createConstraintGraphic(IlvActivityGraphic from,
IlvActivityGraphic to,
IlvConstraint constraint)
Creates a graphic for the specified constraint that connects the
from activity graphic to the to activity graphic.
|
IlvConstraintGraphic |
IlvConstraintGraphicFactory.createConstraintGraphic(IlvActivityGraphic from,
IlvActivityGraphic to,
IlvConstraint constraint)
Creates a graphic for the specified constraint that connects the
from activity graphic to the to activity graphic.
|
IlvConstraintGraphic |
IlvGanttSheet.getConstraintGraphic(IlvConstraint constraint)
Returns the
constraint graphic representing
the specified constraint in the Gantt sheet. |
IlvConstraintGraphic |
IlvConstraintGraphicLayer.getConstraintGraphic(IlvConstraint constraint)
Returns the
constraint graphic representing
the specified constraint in the layer. |
void |
IlvConstraintGraphic.setConstraint(IlvConstraint constraint)
Sets the associated
constraint of the graphic. |
Constructor and Description |
---|
IlvConstraintGraphic(IlvActivityGraphic from,
IlvActivityGraphic to,
IlvConstraint constraint)
Creates an
IlvConstraintGraphic . |
Modifier and Type | Class and Description |
---|---|
class |
IlvAbstractConstraint
IlvAbstractConstraint is the superclass of all
IlvConstraint implementations. |
class |
IlvSimpleConstraint
IlvSimpleConstraint is a relatively simple, memory-based
implementation of the IlvConstraint interface that can be
extended in a straightforward manner for more complex needs. |
Modifier and Type | Method and Description |
---|---|
IlvConstraint |
IlvSimpleConstraintFactory.createConstraint(IlvActivity from,
IlvActivity to,
IlvConstraintType type)
Creates an
IlvSimpleConstraint object from the given parameters. |
Modifier and Type | Method and Description |
---|---|
Iterator<IlvConstraint> |
IlvDefaultGanttModel.constraintIterator()
Returns an iterator over all the constraints in the data model.
|
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.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvDefaultGanttModel.addConstraint(IlvConstraint newConstraint)
Adds
newConstraint to the data model. |
boolean |
IlvDefaultGanttModel.contains(IlvConstraint constraint)
Returns whether the specified constraint is a member of the data model.
|
protected void |
IlvAbstractGanttModel.fireConstraintInserted(IlvConstraint constraint)
Fires a
ConstraintInsertedEvent . |
protected void |
IlvAbstractGanttModel.fireConstraintRemoved(IlvConstraint constraint)
Fires a
ConstraintRemovedEvent . |
protected void |
IlvAbstractGanttModel.fireConstraintRemoved(IlvConstraint constraint,
boolean removingActivity)
Fires a
ConstraintRemovedEvent . |
void |
IlvDefaultGanttModel.removeConstraint(IlvConstraint constraint)
Removes the specified
constraint from the data model. |
Modifier and Type | Method and Description |
---|---|
Iterator<IlvConstraint> |
IlvFilterGanttModel.constraintIterator()
Returns an iterator over all the constraints in the data model.
|
Iterator<IlvConstraint> |
IlvBasicFilterGanttModel.constraintIterator()
Returns an iterator over all the constraints in the data model.
|
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.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvFilterGanttModel.addConstraint(IlvConstraint newConstraint)
Adds
newConstraint to the data model. |
boolean |
IlvFilterGanttModel.contains(IlvConstraint constraint)
Returns whether the specified constraint is a member of the data model.
|
boolean |
IlvBasicFilterGanttModel.contains(IlvConstraint constraint)
Returns whether the specified constraint is a member of the data model.
|
void |
IlvFilterGanttModel.removeConstraint(IlvConstraint constraint)
Removes the specified
constraint from the data model. |
Modifier and Type | Class and Description |
---|---|
class |
IlvGeneralConstraint
IlvGeneralConstraint is an extension of
IlvSimpleConstraint that adds support for user-defined properties. |
Modifier and Type | Method and Description |
---|---|
IlvConstraint |
IlvGeneralConstraint.Factory.createConstraint(IlvActivity from,
IlvActivity to,
IlvConstraintType type)
Creates an
IlvGeneralConstraint object from the given parameters. |
Constructor and Description |
---|
ConstraintUserPropertyEvent(IlvConstraint constraint,
String property,
Object oldValue,
Object newValue,
boolean aboutToChangeEvent)
Creates a new
ConstraintUserPropertyEvent generated by the
specified constraint. |
Modifier and Type | Class and Description |
---|---|
class |
IlvTableConstraint
An
IlvAbstractConstraint implementation that
works with an IlvTableGanttModel . |
Modifier and Type | Method and Description |
---|---|
void |
IlvTableGanttModel.addConstraint(IlvConstraint newConstraint)
Adds a
newConstraint to the data model. |
boolean |
IlvTableGanttModel.contains(IlvConstraint constraint)
Returns whether the specified constraint is a member of the data model.
|
void |
IlvTableGanttModel.removeConstraint(IlvConstraint constraint)
Removes the specified
constraint from the data model. |
Modifier and Type | Method and Description |
---|---|
IlvConstraint |
IlvPopupMenuConstraintContext.getConstraint()
Gets the constraint of this pop-up menu context
|
Constructor and Description |
---|
IlvPopupMenuConstraintContext(IlvPoint point,
JComponent component,
IlvGraphic graphic,
IlvConstraint constraint,
IlvTransformer transformer,
IlvManagerView view)
Creates a new pop-up menu context for graphics representing
IlvConstraint . |
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. |
IlvConstraint |
IlvSimpleConstraintReader.readConstraint(Element elem,
IlvGanttDocumentReader.Context readContext)
Reads an
IlvSimpleConstraint from a given Element . |
IlvConstraint |
IlvGeneralConstraintReader.readConstraint(Element elem,
IlvGanttDocumentReader.Context readContext)
Reads an
IlvGeneralConstraint from a given Element . |
IlvConstraint |
IlvConstraintReader.readConstraint(Element elem,
IlvGanttDocumentReader.Context readContext)
Reads a constraint from a given
Element . |
Modifier and Type | Method and Description |
---|---|
void |
IlvSimpleConstraintWriter.writeConstraint(Element elem,
IlvConstraint constraint,
IlvGanttDocumentWriter.Context writeContext)
Writes an
IlvSimpleConstraint to a given
Element . |
void |
IlvGeneralConstraintWriter.writeConstraint(Element elem,
IlvConstraint constraint,
IlvGanttDocumentWriter.Context writeContext)
Writes an
IlvGeneralConstraint to a given Element . |
void |
IlvConstraintWriter.writeConstraint(Element elem,
IlvConstraint constraint,
IlvGanttDocumentWriter.Context writeContext)
Writes a constraint to a given
Element . |
© Copyright Rogue Wave Software, Inc. 1997, 2018. All Rights Reserved.