Package | Description |
---|---|
ilog.cpl |
ILOG CPL main package containing ILOG CPL top-level JavaBeansTM and widely used classes.
|
ilog.cpl.graph |
Contains the abstract common implementation for both the
IlpNetwork and IlpEquipment components,
including a model, a view and a controller and
related classes. |
ilog.cpl.graphic |
Provides classes and interfaces to create graphic objects.
|
ilog.cpl.network |
Together with
ilog.cpl.IlpNetwork , this package constitutes the JTGO Network component. |
ilog.tgo.composite |
Provides the classes for handling the zoom policies and the layer policies.
|
ilog.tgo.graphic |
Provides all the classes for handling the graphical representations of the telecom objects.
|
ilog.tgo.model |
Provides classes for telecom objects, states and alarms.
|
Modifier and Type | Method and Description |
---|---|
IlpPositionSource |
IlpEquipment.getPositionSource(IlpRepresentationObject object)
Returns the source of the current position or shape of an object.
|
IlpPositionSource |
IlpNetwork.getPositionSource(IlpRepresentationObject object)
Returns the source of the current position or shape of an object.
|
Modifier and Type | Method and Description |
---|---|
void |
IlpEquipment.setPosition(IlpRepresentationObject object,
IlpPosition position,
IlpPositionSource source)
Sets the current position or shape of an object.
|
void |
IlpNetwork.setPosition(IlpRepresentationObject object,
IlpPosition position,
IlpPositionSource source)
Sets the current position or shape of an object.
|
Modifier and Type | Method and Description |
---|---|
IlpPositionSource |
IlpGraphView.getPositionSource(IlpRepresentationObject object)
Returns the source of current position or shape of an object.
|
IlpPositionSource |
IlpPositionChange.getSource()
Returns the source of the new position, which indicates the reason for
the change.
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
IlpGraphHandlerWithDataSource.propagatePositionToDataSource(IlpObject object,
IlpPositionSource reason)
This method determines whether position changes are forwarded to the
data source, or kept local in the graph view.
|
void |
IlpGraphView.setPosition(IlpRepresentationObject object,
IlpPosition position,
IlpPositionSource source)
Sets the current position or shape of an object.
|
Constructor and Description |
---|
IlpPositionChange(IlpPosition position,
IlpPositionSource source)
Constructor.
|
Modifier and Type | Field and Description |
---|---|
static IlpPositionSource |
IlpPositionSource.BACKEND
The position has been set by the adapter or through the
IlpRepresentationObject/IlpGraphicViewStyleManager API directly. |
static IlpPositionSource |
IlpPositionSource.LAYOUT
The position has been set by an automatic layout algorithm.
|
static IlpPositionSource |
IlpPositionSource.USER
The position has been set by the user through an interaction.
|
Constructor and Description |
---|
IlpPositionChange(IlpPosition position,
IlpPositionSource source)
Deprecated.
Please use
IlpPositionChange instead. |
Modifier and Type | Method and Description |
---|---|
void |
IltcCompositeGraphic.applyTransform(IlvTransformer t,
IlpPositionSource reason)
Applies a transform to this graphic object as a whole.
|
Modifier and Type | Method and Description |
---|---|
IlpPositionSource |
IltShapeChangedEvent.getNewShapeSource()
Returns the reason for the shape change, or
null if it is unknown. |
Modifier and Type | Method and Description |
---|---|
void |
IltCompositeGraphic.applyTransform(IlvTransformer t,
IlpPositionSource reason)
Applies a transform to this graphic object as a whole.
|
void |
IltCompositeGraphic.noteShapeChanged(Object newShapeInManager,
IlpPositionSource reason) |
void |
IltCompositeGrapher.setLinkSkeleton(IltCompositeGraphic graphic,
IlpPolyline newshape,
IlpPositionSource reason)
Changes the shape of a link.
|
Constructor and Description |
---|
IltShapeChangedEvent(Object source,
Object newShapeInManager,
IlpPositionSource newShapeSource)
Creates an event.
|
Modifier and Type | Method and Description |
---|---|
void |
IltShelfItem.applyTransform(IltGraphicManager manager,
IltGraphic graphic,
IlvTransformer t,
IlpPositionSource reason)
Deprecated.
|
void |
IltShelf.applyTransform(IltGraphicManager manager,
IltGraphic graphic,
IlvTransformer t,
IlpPositionSource reason)
Deprecated.
|
void |
IltRectGroup.applyTransform(IltGraphicManager manager,
IltGraphic graphic,
IlvTransformer t,
IlpPositionSource reason)
Deprecated.
|
void |
IltPolyGroup.applyTransform(IltGraphicManager manager,
IltGraphic graphic,
IlvTransformer t,
IlpPositionSource reason)
Deprecated.
|
void |
IltOffPageConnector.applyTransform(IltGraphicManager manager,
IltGraphic graphic,
IlvTransformer t,
IlpPositionSource reason)
Deprecated.
|
abstract void |
IltObject.applyTransform(IltGraphicManager manager,
IltGraphic graphic,
IlvTransformer t,
IlpPositionSource reason)
Deprecated.
Please use this approach which is the recommended one:
IltObject object = ...; // Get the IlpPosition Object shape = object.getAttributeValue(IltObject.PositionAttribute); // Only if the attribute has a value if (shape != IlpObject.ATTRIBUTE_VALUE_NOT_SET) { shape = (IlpPosition) shape.clone(); if (shape instanceof IlpPoint) { transform.apply((IlpPoint)shape); } else if (shape instanceof IlpRect) { transform.apply((IlpRect)shape); } else if (shape instanceof IlpPolyline) { ((IlpPolyline)shape).applyTransform(transform); } else if (shape instanceof IlpPolygon) { ((IlpPolygon)shape).applyTransform(transform); } else { // here you can handle user defined IlpPosition types. } //The setAttributeValue call will update the graphic representation (if it exists) automatically. object.setAttributeValue(attribute,shape); } |
void |
IltNetworkElement.applyTransform(IltGraphicManager manager,
IltGraphic graphic,
IlvTransformer t,
IlpPositionSource reason)
Deprecated.
|
void |
IltLinearGroup.applyTransform(IltGraphicManager manager,
IltGraphic graphic,
IlvTransformer t,
IlpPositionSource reason)
Deprecated.
|
void |
IltCardItem.applyTransform(IltGraphicManager manager,
IltGraphic graphic,
IlvTransformer transf,
IlpPositionSource reason)
Deprecated.
|
void |
IltBTSAntenna.applyTransform(IltGraphicManager manager,
IltGraphic graphic,
IlvTransformer t,
IlpPositionSource reason)
Deprecated.
|
void |
IltBTS.applyTransform(IltGraphicManager manager,
IltGraphic graphic,
IlvTransformer t,
IlpPositionSource reason)
Deprecated.
|
void |
IltAbstractLink.applyTransform(IltGraphicManager manager,
IltGraphic graphic,
IlvTransformer t,
IlpPositionSource reason)
Deprecated.
|
void |
IltObject.applyTransform(IltGraphicManager manager,
IlvTransformer t,
IlpPositionSource reason)
Deprecated.
|
void |
IltObject.applyTransformInManager(IltGraphicManager manager,
IltGraphic graphic,
IlvTransformer t,
IlpPositionSource reason)
Deprecated.
|
void |
IltShelfItem.setCenterPoint(IltGraphicManager manager,
IltGraphic graphic,
IlvPoint position,
IlpPositionSource reason)
Changes the position of the graphic representation in a given
IltGraphicManager.
|
void |
IltShelf.setCenterPoint(IltGraphicManager manager,
IltGraphic graphic,
IlvPoint position,
IlpPositionSource reason)
Changes the position of the graphic representation in a given
IltGraphicManager.
|
void |
IltRectGroup.setCenterPoint(IltGraphicManager manager,
IltGraphic graphic,
IlvPoint position,
IlpPositionSource reason)
Changes the position of the graphic representation in a given
IltcObjectContainer.
|
void |
IltPolyGroup.setCenterPoint(IltGraphicManager manager,
IltGraphic graphic,
IlvPoint position,
IlpPositionSource reason)
Changes the position of the graphic representation in a given
IltGraphicManager.
|
void |
IltOffPageConnector.setCenterPoint(IltGraphicManager manager,
IltGraphic graphic,
IlvPoint position,
IlpPositionSource reason)
Changes the shape graphic setting.
|
abstract void |
IltObject.setCenterPoint(IltGraphicManager manager,
IltGraphic graphic,
IlvPoint position,
IlpPositionSource reason)
Changes the position of the graphic representation in a given
IltGraphicManager.
|
void |
IltNetworkElement.setCenterPoint(IltGraphicManager manager,
IltGraphic graphic,
IlvPoint position,
IlpPositionSource reason)
Changes the shape graphic setting.
|
void |
IltLinearGroup.setCenterPoint(IltGraphicManager manager,
IltGraphic graphic,
IlvPoint position,
IlpPositionSource reason)
Changes the position of the graphic representation in a given
IltGraphicManager.
|
void |
IltCardItem.setCenterPoint(IltGraphicManager manager,
IltGraphic graphic,
IlvPoint position,
IlpPositionSource reason)
Changes the position of the graphic representation in a given
IltGraphicManager.
|
void |
IltBTSAntenna.setCenterPoint(IltGraphicManager manager,
IltGraphic graphic,
IlvPoint position,
IlpPositionSource reason)
Changes the shape graphic setting.
|
void |
IltBTS.setCenterPoint(IltGraphicManager manager,
IltGraphic graphic,
IlvPoint position,
IlpPositionSource reason)
Changes the shape graphic setting.
|
void |
IltAbstractLink.setCenterPoint(IltGraphicManager manager,
IltGraphic graphic,
IlvPoint position,
IlpPositionSource reason)
Changes the position of the graphic representation in a given
IltcObjectContainer.
|
void |
IltObject.setCenterPoint(IltGraphicManager manager,
IlvPoint position,
IlpPositionSource reason)
Deprecated.
|
void |
IltObject.setCenterPointInManager(IltGraphicManager manager,
IltGraphic graphic,
IlvPoint position,
IlpPositionSource reason) |
void |
IltPolyGroup.setShape(IltGraphicManager manager,
IlpPolygon shape,
IlpPositionSource reason)
Deprecated.
Adding a object to a datasource, connected to a graphic component such as
an
IlpNetwork , is enough to make its graphic representation
visible. When working with datasource, use
IltObject.setPosition(IlpPosition) instead. |
void |
IltLinearGroup.setShape(IltGraphicManager manager,
IlpPolyline shape,
IlpPositionSource reason)
Deprecated.
Adding a object to a datasource, connected to a graphic component such as
an
IlpNetwork , is enough to make its graphic representation
visible. When working with datasource, use
IltObject.setPosition(IlpPosition) instead. |
void |
IltAbstractLink.setShape(IltGraphicManager manager,
IlpPolyline shape,
IlpPositionSource reason)
Deprecated.
Adding a object to a datasource, connected to a graphic component such as
an
IlpNetwork , is enough to make its graphic representation
visible. When working with datasources, please use setPosition instead. |
void |
IltLinkBundle.setShape(IltGraphicManager manager,
IltGraphic graphic,
IlpPolyline shape,
IlpPositionSource reason)
Changes the shape graphic setting.
|
void |
IltAbstractLink.setShape(IltGraphicManager manager,
IltGraphic graphic,
IlpPolyline shape,
IlpPositionSource reason)
Changes the shape graphic setting.
|
void |
IltShelfItem.setShape(IltGraphicManager manager,
IltGraphic graphic,
IlvRect position,
IlpPositionSource reason)
Changes the shape graphic setting.
|
void |
IltGroup.setShape(IltGraphicManager manager,
IltGraphic graphic,
Object shape,
IlpPositionSource reason)
Update the graphic settings related to shape and GIC offsets.
|
void |
IltShelfItem.setShape(IltGraphicManager manager,
IlvRect shape,
IlpPositionSource reason)
Deprecated.
Adding a object to a datasource, connected to a graphic component such as
an
IlpNetwork , is enough to make its graphic representation
visible. When working with datasource, use
IltObject.setPosition(IlpPosition) instead. |
void |
IltRectGroup.setShape(IltGraphicManager manager,
IlvRect shape,
IlpPositionSource reason)
Deprecated.
Adding a object to a datasource, connected to a graphic component such as
an
IlpNetwork , is enough to make its graphic representation
visible. When working with datasource, use
IltObject.setPosition(IlpPosition) instead. |
void |
IltPolyGroup.setShapeInManager(IltGraphicManager manager,
IltGraphic graphic,
IlpPolygon shape,
IlpPositionSource reason)
Changes the position of the graphic representation in a given
IltGraphicManager.
|
void |
IltLinearGroup.setShapeInManager(IltGraphicManager manager,
IltGraphic graphic,
IlpPolyline shape,
IlpPositionSource reason)
Changes the position of the graphic representation in a given
IltGraphicManager.
|
void |
IltLinkBundle.setShapeInManager(IltGraphicManager manager,
IltGraphic graphic,
IlpPolyline shape,
IlpPositionSource reason,
boolean assumeVisible)
Changes the shape of the link in the given manager, using the provided
composite graphic.
|
void |
IltAbstractLink.setShapeInManager(IltGraphicManager manager,
IltGraphic graphic,
IlpPolyline shape,
IlpPositionSource reason,
boolean assumeVisible)
Changes the shape of the link in the given manager, using the provided
composite graphic.
|
protected void |
IltAbstractLink.setShapeInManagerAux(IltGraphicManager manager,
IltGraphic graphic,
IlpPolyline shape,
IlpPositionSource reason,
boolean assumeVisible)
Changes the position of the graphic representation in a given
IltGraphicManager.
|
void |
IltShelfItem.setShapeInManagerGraphicSetting(IltGraphic graphic,
Object newShape,
IlpPositionSource reason) |
void |
IltRectGroup.setShapeInManagerGraphicSetting(IltGraphic graphic,
Object newShape,
IlpPositionSource reason) |
void |
IltPolyGroup.setShapeInManagerGraphicSetting(IltGraphic graphic,
Object newShape,
IlpPositionSource reason) |
void |
IltObject.setShapeInManagerGraphicSetting(IltGraphic graphic,
Object newShape,
IlpPositionSource reason) |
void |
IltLinearGroup.setShapeInManagerGraphicSetting(IltGraphic graphic,
Object newShape,
IlpPositionSource reason) |
void |
IltCardItem.setShapeInManagerGraphicSetting(IltGraphic graphic,
Object position,
IlpPositionSource reason)
Set the
ShapeInManager graphic setting. |
void |
IltAbstractLink.setShapeInManagerGraphicSetting(IltGraphic graphic,
Object newShape,
IlpPositionSource reason)
Sets the graphic settings responsible for the shape of the object in a given manager
|
void |
IltShelf.setTopLeftPoint(IltGraphicManager manager,
IltGraphic graphic,
IlvPoint position,
IlpPositionSource reason)
Changes the shape graphic setting.
|
void |
IltShelf.setTopLeftPoint(IltGraphicManager manager,
IlvPoint topLeftPoint,
IlpPositionSource reason)
Deprecated.
Please use
setPosition instead. |
void |
IltShelf.setTopLeftPointInManager(IltGraphicManager manager,
IltGraphic graphic,
IlvPoint position,
IlpPositionSource reason)
Changes the position of the graphic representation in a given
IltGraphicManager.
|
void |
IltShelfItem.updateShapeGraphicSettingInManager(IltGraphicManager manager,
IltGraphic graphic,
Object newShape,
IlpPositionSource reason)
If the graphic representation is visible, updates the shape graphic
setting in manager coordinates.
|
void |
IltShelf.updateShapeGraphicSettingInManager(IltGraphicManager manager,
IltGraphic graphic,
Object newShape,
IlpPositionSource reason)
If the graphic representation is visible, updates the shape graphic
setting in manager coordinates.
|
void |
IltRectGroup.updateShapeGraphicSettingInManager(IltGraphicManager manager,
IltGraphic graphic,
Object newShape,
IlpPositionSource reason)
If the graphic representation is visible, updates the shape graphic
setting in manager coordinates.
|
void |
IltPolyGroup.updateShapeGraphicSettingInManager(IltGraphicManager manager,
IltGraphic graphic,
Object newShape,
IlpPositionSource reason)
If the graphic representation is visible, updates the shape graphic
setting in manager coordinates.
|
void |
IltOffPageConnector.updateShapeGraphicSettingInManager(IltGraphicManager manager,
IltGraphic graphic,
Object newShape,
IlpPositionSource reason)
If the graphic representation is visible, updates the shape graphic
setting in manager coordinates.
|
void |
IltObject.updateShapeGraphicSettingInManager(IltGraphicManager manager,
IltGraphic graphic,
Object newShape,
IlpPositionSource reason)
If the graphic representation is visible, updates the shape graphic
setting in manager coordinates.
|
void |
IltNetworkElement.updateShapeGraphicSettingInManager(IltGraphicManager manager,
IltGraphic graphic,
Object newShape,
IlpPositionSource reason)
If the graphic representation is visible, updates the shape graphic
setting in manager coordinates.
|
void |
IltLinearGroup.updateShapeGraphicSettingInManager(IltGraphicManager manager,
IltGraphic graphic,
Object newShape,
IlpPositionSource reason)
If the graphic representation is visible, updates the shape graphic
setting in manager coordinates.
|
void |
IltCardItem.updateShapeGraphicSettingInManager(IltGraphicManager manager,
IltGraphic graphic,
Object newShape,
IlpPositionSource reason)
If the graphic representation is visible, updates the shape graphic
setting in manager coordinates.
|
void |
IltBTSAntenna.updateShapeGraphicSettingInManager(IltGraphicManager manager,
IltGraphic graphic,
Object newShape,
IlpPositionSource reason)
If the graphic representation is visible, updates the shape graphic
setting in manager coordinates.
|
void |
IltBTS.updateShapeGraphicSettingInManager(IltGraphicManager manager,
IltGraphic graphic,
Object newShape,
IlpPositionSource reason)
If the graphic representation is visible, updates the shape graphic
setting in manager coordinates.
|
void |
IltAbstractLink.updateShapeGraphicSettingInManager(IltGraphicManager manager,
IltGraphic graphic,
Object newShape,
IlpPositionSource reason)
If the graphic representation is visible, updates the shape graphic
setting in manager coordinates.
|
© Copyright Rogue Wave Software, Inc. 1997, 2018. All Rights Reserved.