Package | Description |
---|---|
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.
|
ilog.tgo.swing |
Provides Swing classes necessary to create an application mixing JTGO and Swing.
|
Modifier and Type | Class and Description |
---|---|
class |
IltCompositeGrapher
This class is the counterpart of
IlvGrapher for IltCompositeGraphic objects. |
Modifier and Type | Method and Description |
---|---|
static IltGraphicManager |
IltGraphicRenderer.GetManagerForCreateGraphic(IlpGraphicView view,
IlpRepresentationObject object,
IlpAttribute attribute)
Deprecated.
Returns the IltGraphicManager in which the graphic object,
of type IltCompositeGraphic, of a given object should be
created.
|
IltGraphicManager |
IltCompositeGraphic.getManagerNotNull() |
Modifier and Type | Method and Description |
---|---|
void |
IltGraphic.afterComputeGraphic(IltObject object,
IltGraphicManager manager)
Deprecated.
This method is called after computing the graphical representation of the
objects.
|
void |
IltCompositeGraphic.afterComputeGraphic(IltObject object,
IltGraphicManager manager)
This method is called after computing the graphical representation of the
objects.
|
abstract IlpGraphic |
IltGraphicRenderer.createGraphic(IlpGraphicView view,
IltGraphicManager manager,
IlpRepresentationObject object,
IlpAttribute attribute,
IlpGraphicRendererContext rendererContext)
Deprecated.
Creates a new
IlpGraphic object. |
void |
IltGraphic.doComputeGraphic(IltObject object,
IltGraphicManager manager,
ilog.tgo.graphic.internal.IltComputeAmount amount)
Deprecated.
Computes the graphic representation.
|
void |
IltCompositeGraphic.doComputeGraphic(IltObject object,
IltGraphicManager manager,
ilog.tgo.graphic.internal.IltComputeAmount amount)
Computes the graphic representation.
|
void |
IltGraphicRenderer.handleSelectionAndFocus(IltGraphicManager manager,
IltCompositeGraphic cgraphic,
IltObject tgo,
IlpGraphicRendererContext rendererContext)
Deprecated.
Handle the selection and focus to reflect the rendererContext, depending
on the SELECTION_FOCUS_MODE.
|
void |
IltCompositeGraphic.setManagerNotNull(IltGraphicManager manager) |
Constructor and Description |
---|
IltCompositeGraphic(IltObject object,
IltGraphicManager manager)
Creates a composite graphic for the given object in the
given manager.
|
Modifier and Type | Method and Description |
---|---|
IltGraphicManager |
IltGraphicChangedEvent.getManager()
Returns the manager in which the event has occurred.
|
Modifier and Type | Method and Description |
---|---|
void |
IltObject.applyTransform(IltGraphicManager manager,
IltGraphic graphic,
IlvTransformer t)
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 |
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)
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 |
IltObject.applyTransform(IltGraphicManager manager,
IlvTransformer t,
IlpPositionSource reason)
Deprecated.
|
void |
IltObject.applyTransformInManager(IltGraphicManager manager,
IltGraphic graphic,
IlvTransformer t,
IlpPositionSource reason)
Deprecated.
|
boolean |
IltGroup.areDecorationsPinned(IltGraphicManager manager)
Deprecated.
Please use the CSS property
pinDecorations |
void |
IltObject.computeGraphic(IltGraphicManager manager)
Deprecated.
Adding an object to a datasource, connected to a graphic
component such as an
IlpNetwork , is enough
to make its graphic representation visible. Once visible,
it is updated automatically when needed. |
void |
IltPolyGroup.computeGraphic(IltGraphicManager manager,
IlpPolygon shape)
Deprecated.
Adding a object to a datasource, connected to a graphic component such as
an
IlpNetwork , is enough to make its graphic representation
visible. |
void |
IltLinearGroup.computeGraphic(IltGraphicManager manager,
IlpPolyline shape)
Deprecated.
Adding a object to a datasource, connected to a graphic component such as
an
IlpNetwork , is enough to make its graphic representation
visible. |
void |
IltObject.computeGraphic(IltGraphicManager manager,
IltGraphic graphic,
ilog.tgo.graphic.internal.IltComputeAmount amount)
Ensures that this object has a valid graphic representation.
|
void |
IltShelf.computeGraphic(IltGraphicManager manager,
IlvPoint position)
Deprecated.
Adding a object to a datasource, connected to a graphic component such as
an
IlpNetwork , is enough to make its graphic representation
visible. |
void |
IltOffPageConnector.computeGraphic(IltGraphicManager manager,
IlvPoint position)
Deprecated.
Adding a object to a datasource, connected to a graphic component such as
an
IlpNetwork , is enough to make its graphic representation
visible. Once visible, it is updated automatically when needed. |
void |
IltNetworkElement.computeGraphic(IltGraphicManager manager,
IlvPoint position)
Deprecated.
To make this object visible at a given position, please use
the method
setPosition and add this object to a
datasource. |
void |
IltCardItem.computeGraphic(IltGraphicManager manager,
IlvPoint position)
Deprecated.
Adding a object to a datasource, connected to a graphic component such as
an
IlpNetwork , is enough to make its graphic representation
visible. Once visible, it is updated automatically when needed. |
void |
IltBTSAntenna.computeGraphic(IltGraphicManager manager,
IlvPoint position)
Deprecated.
Adding a object to a datasource, connected to a graphic component such as
an
IlpNetwork , is enough to make its graphic representation
visible. |
void |
IltRectGroup.computeGraphic(IltGraphicManager manager,
IlvRect shape)
Deprecated.
Adding a object to a datasource, connected to a graphic component such as
an
IlpNetwork , is enough to make its graphic representation
visible. |
void |
IltCardCarrier.computeGraphic(IltGraphicManager manager,
IlvRect rect)
Deprecated.
Adding a object to a datasource, connected to a graphic component such as
an
IlpNetwork , is enough to make its graphic representation
visible. |
void |
IltObject.computeGraphic(IltGraphicManager manager,
Object position)
Deprecated.
Adding an object to a datasource, connected to a graphic component such as
an
IlpNetwork , is enough to make its graphic representation
visible. Once visible, it is updated automatically when needed. |
void |
IltObject.computeGraphic(IltGraphicManager manager,
Object position,
ilog.tgo.graphic.internal.IltComputeAmount amount)
Ensures that this object has a graphic representation in a given
IltGraphicManager . |
void |
IltObject.computeGraphicAtPosition(IltGraphicManager manager,
Object position,
Object positionInManager,
ilog.tgo.graphic.internal.IltComputeAmount amount)
Ensures that this object has a valid graphic representation in
a given IltGraphicManager.
|
IlpGraphic |
IltObjectDefaultRenderer.createGraphic(IlpGraphicView view,
IltGraphicManager manager,
IlpRepresentationObject object,
IlpAttribute attribute,
IlpGraphicRendererContext rendererContext)
Deprecated.
Creates a new graphic representation.
|
void |
IltShelf.createGraphic(IltGraphicManager manager)
Deprecated.
Adding a object to a datasource, connected to a graphic component such as
an
IlpNetwork , is enough to make its graphic representation
visible. |
void |
IltObject.createGraphic(IltGraphicManager manager)
Deprecated.
Adding an object to a datasource, connected to a graphic
component such as an
IlpNetwork , is enough
to make its graphic representation visible. |
void |
IltLinkSet.createGraphic(IltGraphicManager manager)
Deprecated.
Adding a object to a datasource, connected to a graphic component such as
an
IlpNetwork , is enough to make its graphic representation
visible. |
void |
IltLinkBundle.createGraphic(IltGraphicManager manager)
Deprecated.
Adding a object to a datasource, connected to a graphic component such as
an
IlpNetwork , is enough to make its graphic representation
visible. |
void |
IltCardCarrier.createGraphic(IltGraphicManager manager)
Deprecated.
Adding a object to a datasource, connected to a graphic component such as
an
IlpNetwork , is enough to make its graphic representation
visible. |
void |
IltBTS.createGraphic(IltGraphicManager manager)
Deprecated.
Adding a object to a datasource, connected to a graphic component such as
an
IlpNetwork , is enough to make its graphic representation
visible. |
void |
IltObject.fireGraphicChanged(IltGraphicManager manager,
IltGraphic graphic)
Broadcasts a graphic change event.
|
protected void |
IltObject.forgetShapeGraphicSettingInManager(IltGraphicManager manager,
IltGraphic graphic)
Removes the shape graphic setting in manager coordinates.
|
protected void |
IltAbstractLink.forgetShapeGraphicSettingInManager(IltGraphicManager manager,
IltGraphic graphic)
Removes the shape graphic setting in manager coordinates.
|
IlvRect |
IltShelfItem.getBaseRectangle(IltGraphicManager manager)
Returns the base rectangle of the graphic representation in a given
IltGraphicManager.
|
IlvRect |
IltShelf.getBaseRectangle(IltGraphicManager manager)
Returns the base rectangle of the graphic representation in a given
IltGraphicManager.
|
IlvRect |
IltRectGroup.getBaseRectangle(IltGraphicManager manager)
Returns the base rectangle of the graphic representation in a given
IltGraphicManager.
|
IlvRect |
IltPolyGroup.getBaseRectangle(IltGraphicManager manager)
Returns the base rectangle of the graphic representation in a given
IltGraphicManager.
|
IlvRect |
IltOffPageConnector.getBaseRectangle(IltGraphicManager manager)
Returns the base rectangle of the graphic representation in a given
IltGraphicManager.
|
abstract IlvRect |
IltObject.getBaseRectangle(IltGraphicManager manager)
Returns the base rectangle of the graphic representation in a given
IltGraphicManager.
|
IlvRect |
IltNetworkElement.getBaseRectangle(IltGraphicManager manager)
Returns the base rectangle of the graphic representation in a given
IltGraphicManager.
|
IlvRect |
IltLinearGroup.getBaseRectangle(IltGraphicManager manager)
Returns the base rectangle of the graphic representation in a given
IltGraphicManager.
|
IlvRect |
IltCardItem.getBaseRectangle(IltGraphicManager manager)
Returns the base rectangle of the graphic representation
in a given IltGraphicManager.
|
IlvRect |
IltBTSAntenna.getBaseRectangle(IltGraphicManager manager)
Returns the base rectangle of the graphic representation in a given
IltGraphicManager.
|
IlvRect |
IltBTS.getBaseRectangle(IltGraphicManager manager)
Returns the base rectangle of the graphic representation in a given
IltGraphicManager.
|
IlvRect |
IltAbstractLink.getBaseRectangle(IltGraphicManager manager)
Returns the base rectangle of the graphic representation in a given
IltGraphicManager.
|
IlvRect |
IltObject.getBaseRectangleInManager(IltGraphicManager manager) |
IlvPoint |
IltObject.getCenterPoint(IltGraphicManager manager)
Deprecated.
In order to get the center point of a given
IltObject
you should use the IltObject.PositionAttribute to
retrieve the IlpPosition object that represents this
IltObject 's position. Then depending on the
IlpPosition 's sub-type you should appropriately
calculate the center IlpPoint . Below is an example of
how to do this:
IlpObject object = ...; // Get the IlpPosition Object shape = object.getAttributeValue(IltObject.PositionAttribute); // Compute the center. IlpPoint center = null; // Only if the attribute has a value if (shape != IlpObject.ATTRIBUTE_VALUE_NOT_SET) { shape = (IlpPosition) shape.clone(); if (shape instanceof IlpPoint) { center = (IlpPoint)center; } else if (shape instanceof IlpRect) { IlpRect r = (IlpRect)shape; center = new IlpPoint(r.x + 0.5 * r.width, r.y + 0.5 * r.height); } else if (shape instanceof IlpPolyline) { // This is an undocumented utility method that returns the center point // of this IlpPolyline. So if you want you can provide your own // implementation here. center = new IlpPoint(((IlpPolyline)shape).getGravity1()); } else if (shape instanceof IlpPolygon) { // This is an undocumented utility method that returns the center point // of this IlpPolygon. So if you want you can provide your own // implementation here. center = new IlpPoint(((IlpPolygon)shape).getGravity2()); } else { // here you can handle user defined IlpPosition types. } } |
protected IlvPoint |
IltShelfItem.getCenterPoint(IltGraphicManager manager,
IltGraphic graphic)
Returns the center point with the manager's transformer applies
|
protected IlvPoint |
IltShelf.getCenterPoint(IltGraphicManager manager,
IltGraphic graphic)
Returns the position of the graphic representation in a given
IltGraphicManager.
|
protected IlvPoint |
IltRectGroup.getCenterPoint(IltGraphicManager manager,
IltGraphic graphic)
Returns the position of the graphic representation in a given
IltGraphicManager.
|
protected IlvPoint |
IltPolyGroup.getCenterPoint(IltGraphicManager manager,
IltGraphic graphic)
Returns the point that represents the center of the polygonal group.
|
protected IlvPoint |
IltOffPageConnector.getCenterPoint(IltGraphicManager manager,
IltGraphic graphic)
Returns the shape graphic setting.
|
protected abstract IlvPoint |
IltObject.getCenterPoint(IltGraphicManager manager,
IltGraphic graphic)
Returns the position of the graphic representation in a given
IltGraphicManager.
|
protected IlvPoint |
IltNetworkElement.getCenterPoint(IltGraphicManager manager,
IltGraphic graphic)
Returns the shape graphic setting.
|
protected IlvPoint |
IltLinearGroup.getCenterPoint(IltGraphicManager manager,
IltGraphic graphic)
Returns the position of the graphic representation in a given
IltGraphicManager.
|
protected IlvPoint |
IltCardItem.getCenterPoint(IltGraphicManager manager,
IltGraphic graphic)
Returns the position of the graphic representation in a given
IltGraphicManager.
|
protected IlvPoint |
IltBTSAntenna.getCenterPoint(IltGraphicManager manager,
IltGraphic graphic)
Returns the shape graphic setting.
|
protected IlvPoint |
IltBTS.getCenterPoint(IltGraphicManager manager,
IltGraphic graphic)
Returns the shape graphic setting.
|
protected IlvPoint |
IltAbstractLink.getCenterPoint(IltGraphicManager manager,
IltGraphic graphic)
Returns the position of the graphic representation in a given
IltcObjectContainer.
|
IlvPoint |
IltOffPageConnector.getCenterPointInManager(IltGraphicManager manager,
IltGraphic graphic)
Returns the position of the graphic representation in a given
IltGraphicManager.
|
IlvPoint |
IltObject.getCenterPointInManager(IltGraphicManager manager,
IltGraphic graphic) |
IlvPoint |
IltNetworkElement.getCenterPointInManager(IltGraphicManager manager,
IltGraphic graphic)
Returns the position of the graphic representation in a given
IltGraphicManager.
|
IlvPoint |
IltBTSAntenna.getCenterPointInManager(IltGraphicManager manager,
IltGraphic graphic)
Returns the position of the graphic representation in a given
IltGraphicManager.
|
IlvPoint |
IltBTS.getCenterPointInManager(IltGraphicManager manager,
IltGraphic graphic)
Returns the position of the graphic representation in a given
IltGraphicManager.
|
IlvPoint |
IltGroup.getDecorationsCenterPoint(IltGraphicManager manager)
Deprecated.
Please use CSS property
decorationsOffset instead. |
protected IlvPoint |
IltGroup.getDecorationsCenterPoint(IltGraphicManager manager,
IltGraphic graphic)
Returns the absolute center point of the group information cluster in
a specific graphical representation.
|
IlvPoint |
IltLink.getDecorationsOffset(IltGraphicManager mgr)
Deprecated.
Please use the CSS property
decorationsOffset instead. |
IlvPoint |
IltGroup.getDecorationsOffset(IltGraphicManager manager)
Deprecated.
Please use CSS property
decorationsOffset |
protected IlvPoint |
IltGroup.getDecorationsOffset(IltGraphicManager manager,
IltGraphic graphic)
Returns the decorations offset for the given graphical representation.
|
IltObject |
IltAbstractLink.getFrom(IltGraphicManager manager)
Returns the first extremity of the link in the given manager, or
getLogicalFrom if the link is not in the manager. |
IltGraphic |
IltObject.getGraphic(IltGraphicManager manager)
Deprecated.
Once you have added an
IlpObject to a datasource
and is it being displayed, you can retrieve the
IlpRepresentationObject through
network.getAdapter().getRepresentationObject(obj)
and the IlpGraphic through
network.getView().getGraphic(repobj) . |
IltGraphic |
IltObject.getGraphicInHierarchy(IltGraphicManager manager)
Returns the IltGraphic which represents this object in the hierarchy
of a given manager (below, above or unrelated).
|
IltCompositeInteractions |
IltObject.getGraphicInteractions(IltGraphicManager manager)
Deprecated.
Adding an object to a datasource, connected to a graphic component such as
an
IlpNetwork , is enough to make its graphic representation
visible. Once visible, retrieve the graphic representation of the object
and query its interactions. |
IltGraphic |
IltObject.getGraphicNotNull(IltGraphicManager manager)
Returns the IltCompositeGraphic which represents this object in a given
manager.
|
IltGraphic |
IltObject.getGraphicNotNullInHierarchy(IltGraphicManager manager)
Returns the IltGraphic which represents this object in the hierarchy
of a given manager (below, above or unrelated).
|
Object |
IltObject.getGraphicSetting(IltGraphicManager manager,
IltGraphic graphic,
ilog.tgo.graphic.internal.IltGraphicSetting setting)
Returns the value of a graphic setting of the graphic representation
in a given IltGraphicManager.
|
Object |
IltObject.getGraphicSetting(IltGraphicManager manager,
ilog.tgo.graphic.internal.IltGraphicSetting setting)
Returns the value of a graphic setting of the graphic representation
in a given IltGraphicManager.
|
IltGraphicSettings |
IltObject.getGraphicSettings(IltGraphicManager manager)
Deprecated.
|
IlvRect |
IltShelfItemContainer.getItemRect(IltGraphicManager manager,
IltObject item)
Deprecated.
|
IlvRect |
IltShelf.getItemRect(IltGraphicManager manager,
IltObject item)
Deprecated.
Adding a object to a datasource, connected to a graphic component such as
an
IlpNetwork , is enough to make its graphic representation
visible. Retrieve the bounding box of the children object from its
graphic representation. |
IlvRect |
IltCardCarrier.getItemRect(IltGraphicManager manager,
IltObject item)
Access the dimension of a given child item in the given manager.
|
int |
IltShelfItem.getLabelDirection(IltGraphicManager manager)
Deprecated.
Please use CSS property
labelDirection instead. |
IlvPoint |
IltObject.getLabelOffset(IltGraphicManager manager)
Deprecated.
Please use CSS property
labelPosition instead. |
int |
IltObject.getLabelPosition(IltGraphicManager manager)
Deprecated.
Use CSS property
labelPosition instead. |
IlvGraphic |
IltObject.getLayoutProxy(IltGraphicManager manager)
Deprecated.
Please add this object to a datasource, retrieve its
IlpGraphic and then use the method
IlpNetworkView.getLayoutProxy . |
IltLegend |
IltObject.getLegend(IltGraphicManager manager)
Deprecated.
The Style API has been replaced by the Cascading Style
Sheet mechanism. Please refer to the User's Manual for further information.
|
float |
IltLinkSet.getLinkDistance(IltGraphicManager manager)
Deprecated.
Please use CSS property
linkDistance instead. |
float |
IltLinkBundle.getLinkDistance(IltGraphicManager manager)
Deprecated.
Please use CSS property
linkDistance instead. |
float |
IltLinkSet.getLinkDistance(IltGraphicManager manager,
IltGraphic graphic)
Deprecated.
Please use CSS property
linkDistance instead. |
IltObject |
IltAbstractLink.getNextFrom(IltGraphicManager manager)
Returns the object that will be used as the first extremity of the link,
the next time the link is added to a manager.
|
IltObject |
IltAbstractLink.getNextTo(IltGraphicManager manager)
Returns the object that will be used as the second extremity of the link,
the next time the link is added to a manager.
|
IltGraphic |
IltShelfItem.getOutermostParentGraphic(IltGraphicManager manager)
This method is overwritten by the subclasses which can be contained in
other IltObjects.
|
IltGraphic |
IltBTSAntenna.getOutermostParentGraphic(IltGraphicManager manager)
This method is overridden by the subclasses which can be contained in
other IltObjects.
|
IltGraphic |
IltAbstractLink.getOutermostParentGraphic(IltGraphicManager manager)
This method is overridden by the subclasses which can be contained in
other IltObjects.
|
IlvPoint |
IltCard.getParentPosition(IltGraphicManager manager,
IltGraphic graphic)
Deprecated.
Please retrieve the parent object and use
getPosition instead. |
IlpRelativePoint |
IltCard.getRelativePosition(IltGraphicManager manager,
IlvPoint viewPos)
Converts the absolute position (
IlvPoint ) of a card item into
a relative position. |
IlvRect |
IltShelfItem.getShape(IltGraphicManager manager)
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, please use getPosition instead. |
IlvRect |
IltRectGroup.getShape(IltGraphicManager manager)
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 getPosition instead. |
IlpPolygon |
IltPolyGroup.getShape(IltGraphicManager manager)
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. |
IlpPolyline |
IltLinearGroup.getShape(IltGraphicManager manager)
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, please use getPosition instead. |
IlpPolyline |
IltAbstractLink.getShape(IltGraphicManager manager)
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, please use getPosition instead. |
IlvRect |
IltShelfItem.getShape(IltGraphicManager manager,
IltGraphic graphic)
Returns the shape graphic setting.
|
protected IlvRect |
IltRectGroup.getShape(IltGraphicManager manager,
IltGraphic graphic)
Returns the shape graphic setting.
|
protected IlpPolygon |
IltPolyGroup.getShape(IltGraphicManager manager,
IltGraphic graphic)
Returns the shape graphic setting.
|
protected IlpPolyline |
IltLinearGroup.getShape(IltGraphicManager manager,
IltGraphic graphic)
Returns the shape graphic setting.
|
protected IlpPolyline |
IltAbstractLink.getShape(IltGraphicManager manager,
IltGraphic graphic)
Returns the shape graphic setting.
|
protected IlvRect |
IltShelfItem.getShapeInManager(IltGraphicManager manager,
IltGraphic graphic)
Returns the position of the graphic representation in a given
IltGraphicManager.
|
protected IlvRect |
IltRectGroup.getShapeInManager(IltGraphicManager manager,
IltGraphic graphic)
Returns the position of the graphic representation in a given
IltGraphicManager.
|
protected IlpPolygon |
IltPolyGroup.getShapeInManager(IltGraphicManager manager,
IltGraphic graphic)
Returns the position of the graphic representation in a given
IltGraphicManager.
|
IlpPolyline |
IltLinearGroup.getShapeInManager(IltGraphicManager manager,
IltGraphic graphic)
Returns the position of the graphic representation in a given
IltGraphicManager.
|
protected IlpPolyline |
IltAbstractLink.getShapeInManager(IltGraphicManager manager,
IltGraphic graphic)
Returns the position of the graphic representation in a given
IltGraphicManager.
|
IlvTransformer |
IltNetworkElement.getSizeRatio(IltGraphicManager manager)
Deprecated.
Please use CSS property
sizeRatio instead. |
IltObject |
IltAbstractLink.getTo(IltGraphicManager manager)
Returns the second extremity of the link in the given manager, or
getLogicalTo if the link is not in the manager. |
IlvPoint |
IltShelf.getTopLeftPoint(IltGraphicManager manager)
Deprecated.
Please use
getPosition instead. |
protected IlvPoint |
IltShelf.getTopLeftPoint(IltGraphicManager manager,
IltGraphic graphic)
Returns the shape graphic setting.
|
IlvPoint |
IltCard.getViewPosition(IltGraphicManager manager,
IltCardItem item)
Converts the relative position (
IlpRelativePoint ) of a card
item into a view position. |
double |
IltAbstractLink.getWidth(IltGraphicManager manager)
Deprecated.
|
double |
IltLinkSet.getWidth(IltGraphicManager manager,
IltGraphic graphic)
Returns the width of the graphic representation.
|
double |
IltLinkBundle.getWidth(IltGraphicManager manager,
IltGraphic graphic) |
double |
IltLink.getWidth(IltGraphicManager manager,
IltGraphic graphic) |
abstract double |
IltAbstractLink.getWidth(IltGraphicManager manager,
IltGraphic graphic)
Returns the width of the graphic representation.
|
void |
IltShelf.initializeCreatedGraphic(IltGraphicManager manager,
IltGraphic graphic) |
void |
IltObject.initializeCreatedGraphic(IltGraphicManager manager,
IltGraphic graphic)
This method must be called just after preCreateGraphic to initialize any
needed property or graphic setting.
|
void |
IltLinkSet.initializeCreatedGraphic(IltGraphicManager manager,
IltGraphic graphic)
This is called before adding a graphic representation to a given
view.
|
void |
IltLinkBundle.initializeCreatedGraphic(IltGraphicManager manager,
IltGraphic graphic) |
void |
IltCardCarrier.initializeCreatedGraphic(IltGraphicManager manager,
IltGraphic graphic) |
void |
IltBTS.initializeCreatedGraphic(IltGraphicManager manager,
IltGraphic graphic)
This method must be called just after preCreateGraphic to initialize any
needed property or graphic setting.
|
void |
IltObject.initializeVisibleGraphic(IltGraphicManager manager,
IltGraphic graphic)
This method must be called before a graphic representation becomes visible.
|
void |
IltAbstractLink.initializeVisibleGraphic(IltGraphicManager manager,
IltGraphic graphic)
This is called before adding a graphic representation to a given
view.
|
boolean |
IltNetworkElement.isCollapsed(IltGraphicManager manager)
Deprecated.
Please use CSS property
collapsed instead. |
boolean |
IltOffPageConnector.isDepressed(IltGraphicManager manager)
Deprecated.
Please use CSS properties and pseudoclasses to achieve the
depressed graphic representation.
|
boolean |
IltObject.isEditable(IltGraphicManager manager)
Deprecated.
Please use CSS property
editable instead. |
boolean |
IltLinkBundle.isExpanded(IltGraphicManager manager)
Deprecated.
Please use the Network component and its services to manage
subnetworks and link bundles instead.
|
boolean |
IltObject.isNearlyVisible(IltGraphicManager manager,
IltGraphic graphic)
Returns the soon-to-be-attained visibility state of a graphic
object in a given IltGraphicManager.
|
boolean |
IltObject.isSelected(IltGraphicManager manager)
Deprecated.
Please use
IlpNetwork.isObjectSelected or
IlpEquipment.isObjectSelected instead. |
boolean |
IltObject.isSelected(IltGraphicManager manager,
IltGraphic graphic)
Returns the "selected" state of the graphic representation in a given
IltGraphicManager.
|
boolean |
IltObject.isVisible(IltGraphicManager manager)
Deprecated.
Use
IlpDataSource.getObjects().contains() to test
whether an object is in the datasource. Use the adapter's
getRepresentationObject method to test whether an
object's representation object currently exists. |
void |
IltGroup.pinDecorations(IltGraphicManager manager,
boolean pin)
Deprecated.
Please use the CSS property
pinDecorations |
void |
IltObject.postCreateGraphic(IltGraphicManager manager,
IltGraphic graphic)
This is called at the end of adding a graphic representation to a
given view.
|
void |
IltLinkSet.postCreateGraphic(IltGraphicManager manager,
IltGraphic graphic)
This method is called to add the link to a manager, for instance at the
end of computeGraphic.
|
void |
IltBTSAntenna.postCreateGraphic(IltGraphicManager manager,
IltGraphic graphic) |
void |
IltAbstractLink.postCreateGraphic(IltGraphicManager manager,
IltGraphic graphic)
This is called at the end of adding a graphic representation to a
given view.
|
IltGraphic |
IltObject.preCreateGraphic(IltGraphicManager manager)
This is called before adding a graphic representation to a given view.
|
IltGraphic |
IltLinkSet.preCreateGraphic(IltGraphicManager manager)
Creation of an IltGraphic.
|
void |
IltShelf.removeGraphic(IltGraphicManager manager) |
void |
IltObject.removeGraphic(IltGraphicManager manager)
Deprecated.
Removing an object from the datasource containing it is enough to
make its graphic representation disappear.
|
void |
IltLinkSet.removeGraphic(IltGraphicManager manager)
Removes the graphic representation of this link from the given manager.
|
void |
IltLinkBundle.removeGraphic(IltGraphicManager manager)
Deprecated.
Removing an object from the datasource containing it is enough to
make its graphic representation disappear.
|
void |
IltCardCarrier.removeGraphic(IltGraphicManager manager) |
void |
IltCard.removeGraphic(IltGraphicManager manager)
Deprecated.
Removing an object from the data source that it is contained in
is enough to make its graphic representation disappear.
|
void |
IltBTS.removeGraphic(IltGraphicManager manager) |
void |
IltAbstractLink.removeGraphic(IltGraphicManager manager)
Removes the graphic representation of this link from the given manager.
|
void |
IltCardCarrier.removeGraphic(IltGraphicManager manager,
IltCompositeGraphic graphic) |
void |
IltObject.removeGraphic(IltGraphicManager manager,
IltGraphic graphic)
Removes the given graphic representation of this object.
|
void |
IltObject.removeGraphicSetting(IltGraphicManager manager,
IltGraphic graphic,
ilog.tgo.graphic.internal.IltGraphicSetting setting)
Removes a graphic setting of the graphic representation in a given
IltGraphicManager.
|
void |
IltObject.removeGraphicSetting(IltGraphicManager manager,
ilog.tgo.graphic.internal.IltGraphicSetting setting)
Removes a graphic setting of the graphic representation in a given
IltGraphicManager.
|
void |
IltGroup.resetDecorationsCenterPoint(IltGraphicManager manager)
Deprecated.
Please use CSS property
decorationsOffset instead. |
void |
IltLink.resetDecorationsOffset(IltGraphicManager manager)
Deprecated.
Please use the CSS property
decorationsOffset instead. |
void |
IltGroup.resetDecorationsOffset(IltGraphicManager manager)
Deprecated.
Please use the CSS property
decorationsOffset |
void |
IltShelfItem.resetLabelDirection(IltGraphicManager manager)
Deprecated.
Please use CSS property
labelDirection instead. |
void |
IltObject.resetLabelOffset(IltGraphicManager manager)
Deprecated.
Please use CSS property
labelOffset instead. |
void |
IltObject.resetLabelPosition(IltGraphicManager manager)
Deprecated.
Please use CSS property
labelPosition instead. |
void |
IltGroup.resetPinDecorations(IltGraphicManager manager)
Deprecated.
Please use the CSS property
pinDecorations |
void |
IltShelfItem.restoreVisibility(IltGraphicManager manager,
IltGraphicSettings settings)
Deprecated.
Adding a object to a datasource, connected to a graphic component such as
an
IlpNetwork , is enough to make its graphic representation
visible. Once visible, it is updated automatically when needed. |
void |
IltObject.restoreVisibility(IltGraphicManager manager,
IltGraphicSettings settings)
Deprecated.
Adding an object to a datasource, connected to a graphic component such as
an
IlpNetwork , is enough to make its graphic representation
visible. Once visible, it is updated automatically when needed. |
void |
IltAbstractLink.restoreVisibility(IltGraphicManager manager,
IltGraphicSettings settings)
Deprecated.
Adding a object to a datasource, connected to a graphic component such as
an
IlpNetwork , is enough to make its graphic representation
visible. Once visible, it is updated automatically when needed. |
void |
IltShelfItem.setBaseRectangle(IltGraphicManager manager,
IlvRect newBaseRectangle)
Applies a transformation to the graphic representation in a given
IltGraphicManager, attempting to make the base rectangle resemble
the given rectangle.
|
void |
IltShelf.setBaseRectangle(IltGraphicManager manager,
IlvRect newBaseRectangle)
Applies a transformation to the graphic representation in a given
IltGraphicManager, attempting to make the base rectangle resemble
the given rectangle.
|
void |
IltRectGroup.setBaseRectangle(IltGraphicManager manager,
IlvRect newBaseRectangle)
Applies a transformation to the graphic representation in a given
IltGraphicManager, attempting to make the base rectangle resemble
the given rectangle.
|
void |
IltPolyGroup.setBaseRectangle(IltGraphicManager manager,
IlvRect newBaseRectangle)
Applies a transformation to the graphic representation in a given
IltGraphicManager, attempting to make the base rectangle resemble
the given rectangle.
|
void |
IltOffPageConnector.setBaseRectangle(IltGraphicManager manager,
IlvRect newBaseRectangle)
Applies a transformation to the graphic representation in a given
IltGraphicManager, attempting to make the base rectangle resemble
the given rectangle.
|
abstract void |
IltObject.setBaseRectangle(IltGraphicManager manager,
IlvRect newBaseRectangle)
Applies a transformation to the graphic representation in a given
IltGraphicManager, attempting to make the base rectangle resemble
the given rectangle.
|
void |
IltNetworkElement.setBaseRectangle(IltGraphicManager manager,
IlvRect newBaseRectangle)
Applies a transformation to the graphic representation in a given
IltGraphicManager, attempting to make the base rectangle resemble
the given rectangle.
|
void |
IltLinearGroup.setBaseRectangle(IltGraphicManager manager,
IlvRect newBaseRectangle)
Applies a transformation to the graphic representation in a given
IltGraphicManager, attempting to make the base rectangle resemble
the given rectangle.
|
void |
IltCardItem.setBaseRectangle(IltGraphicManager manager,
IlvRect newBaseRectangle)
Applies a transformation to the graphic representation in a given
IltGraphicManager, attempting to make the base rectangle resemble
the given rectangle.
|
void |
IltBTSAntenna.setBaseRectangle(IltGraphicManager manager,
IlvRect newBaseRectangle)
Applies a transformation to the graphic representation in a given
IltGraphicManager, attempting to make the base rectangle resemble
the given rectangle.
|
void |
IltBTS.setBaseRectangle(IltGraphicManager manager,
IlvRect newBaseRectangle)
Applies a transformation to the graphic representation in a given
IltGraphicManager, attempting to make the base rectangle resemble
the given rectangle.
|
void |
IltAbstractLink.setBaseRectangle(IltGraphicManager manager,
IlvRect newBaseRectangle)
Applies a transformation to the graphic representation in a given
IltGraphicManager, attempting to make the base rectangle resemble
the given rectangle.
|
void |
IltObject.setBaseRectangleInManager(IltGraphicManager manager,
IlvRect shape)
Applies a transformation to the graphic representation in a given
IltGraphicManager, attempting to make the base rectangle resemble
the given rectangle.
|
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)
Deprecated.
Please use an approach depending on the
IlpPosition type of
of the object. For objects whose position is just a point, you can use
the setPosition method. |
void |
IltObject.setCenterPoint(IltGraphicManager manager,
IlvPoint position,
IlpPositionSource reason)
Deprecated.
|
void |
IltObject.setCenterPointInManager(IltGraphicManager manager,
IltGraphic graphic,
IlvPoint position,
IlpPositionSource reason) |
void |
IltNetworkElement.setCollapsed(IltGraphicManager manager,
boolean collapsed)
Deprecated.
Use CSS property
collapsed instead. |
protected void |
IltGroup.setDecorationsCenterPoint(IltGraphicManager manager,
IltGraphic graphic,
IlvPoint centerPoint)
Sets the absolute center point of the group information cluster in
a given manager.
|
void |
IltGroup.setDecorationsCenterPoint(IltGraphicManager manager,
IlvPoint centerPoint)
Deprecated.
Please use CSS property
decorationsOffset instead. |
protected void |
IltGroup.setDecorationsOffset(IltGraphicManager manager,
IltGraphic graphic,
IlvPoint offset)
Sets the relative position of the group information cluster in
a given manager according to the center of gravity.
|
void |
IltLink.setDecorationsOffset(IltGraphicManager mgr,
IlvPoint offset)
Deprecated.
Please use the CSS property
decorationsOffset instead. |
void |
IltGroup.setDecorationsOffset(IltGraphicManager manager,
IlvPoint offset)
Deprecated.
Please use CSS property
decorationsOffset |
void |
IltOffPageConnector.setDepressed(IltGraphicManager manager,
boolean depressed)
Deprecated.
Please use CSS properties and pseudoclasses to achieve the
depressed graphic representation.
|
void |
IltObject.setEditable(IltGraphicManager manager,
boolean editable)
Deprecated.
Use CSS property
editable instead. |
void |
IltLinkBundle.setExpanded(IltGraphicManager manager,
boolean expansionVisible)
Deprecated.
Please use the Network component and its services to manage
subnetworks and link bundles instead.
|
void |
IltLinkSet.setFrom(IltGraphicManager manager,
IltObject from)
Sets the object that is to use as the first extremity of the link in the
given manager.
|
void |
IltLinkBundle.setFrom(IltGraphicManager manager,
IltObject from)
Sets the object that is to use as the first extremity of the link in the
given manager.
|
void |
IltAbstractLink.setFrom(IltGraphicManager manager,
IltObject from)
Sets the object that is to use as the first extremity of the link in the
given manager.
|
void |
IltAbstractLink.setFromOverride(IltGraphicManager manager,
IltObject newEnd)
Changes the override setting for the "from" end of a (yet nonexistent)
graphic representation.
|
void |
IltObject.setGraphic(IltGraphicManager manager,
IltGraphic graphic)
Adds the graphical representation and the manager to the graphic multiplexer
structure.
|
void |
IltObject.setGraphicSetting(IltGraphicManager manager,
IltGraphic graphic,
ilog.tgo.graphic.internal.IltGraphicSetting setting,
Object value)
Changes a graphic setting of the graphic representation in a given
IltGraphicManager.
|
void |
IltObject.setGraphicSetting(IltGraphicManager manager,
ilog.tgo.graphic.internal.IltGraphicSetting setting,
Object value)
Changes a graphic setting of the graphic representation in a given
IltGraphicManager.
|
void |
IltObject.setGraphicSettings(IltGraphicManager manager,
IltGraphicSettings settings)
Deprecated.
Adding an object to a datasource, connected to a graphic component such as
an
IlpNetwork , is enough to make its graphic representation
visible. Once visible, it is updated automatically when needed. |
void |
IltShelfItem.setLabelDirection(IltGraphicManager manager,
int direction)
Deprecated.
Please use CSS property
labelDirection instead. |
void |
IltObject.setLabelOffset(IltGraphicManager manager,
IlvPoint offset)
Deprecated.
Please use CSS property
labelOffset instead. |
void |
IltObject.setLabelPosition(IltGraphicManager manager,
int position)
Deprecated.
Use CSS property
labelPosition instead. |
void |
IltLinkSet.setLinkDistance(IltGraphicManager manager,
float d)
Deprecated.
Please use CSS property
linkDistance instead. |
void |
IltLinkBundle.setLinkDistance(IltGraphicManager manager,
float d)
Deprecated.
Please use CSS property
linkDistance instead. |
void |
IltLinkBundle.setLinkLayoutProxyPresent(IltGraphicManager manager,
boolean layoutable) |
void |
IltAbstractLink.setLinkLayoutProxyPresent(IltGraphicManager manager,
boolean layoutable)
Sets the layoutability of the link in the given manager.
|
void |
IltObject.setSelected(IltGraphicManager manager,
boolean selected)
Deprecated.
Please use the methods
addSelectionObject or
removeSelectionObject in the classes IlpNetwork
and IlpEquipment instead. |
void |
IltObject.setSelectedInternal(IltGraphicManager manager,
IltGraphic graphic,
boolean selected)
Changes the "selected" state of the graphic representation in a given
IltGraphicManager.
|
void |
IltPolyGroup.setShape(IltGraphicManager manager,
IlpPolygon shape)
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.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)
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)
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 |
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 |
IltPolyGroup.setShape(IltGraphicManager manager,
IltLogicalPolygon shape)
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,
IltLogicalPolyline shape)
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 |
IltAbstractLink.setShape(IltGraphicManager manager,
IltLogicalPolyline shape)
Deprecated.
Please use
IlpPolyline instead of IltLogicalPolyline . |
void |
IltShelfItem.setShape(IltGraphicManager manager,
IlvRect shape)
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, please use getPosition instead. |
void |
IltRectGroup.setShape(IltGraphicManager manager,
IlvRect shape)
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 |
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.
|
void |
IltCardCarrier.setShapeInManager(IltGraphicManager manager,
IltGraphic graphic,
IlvRect shape)
Sets the shape of this card carrier in the given manager and recalculates the
contained shelf items sizes.
|
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 |
IltNetworkElement.setSizeRatio(IltGraphicManager manager,
IlvTransformer mag)
Deprecated.
Please use CSS property
sizeRatio instead. |
void |
IltLinkSet.setTo(IltGraphicManager manager,
IltObject to)
Sets the object that is to use as the second extremity of the link in the
given manager.
|
void |
IltLinkBundle.setTo(IltGraphicManager manager,
IltObject to)
Sets the object that is to use as the second extremity of the link in the
given manager.
|
void |
IltAbstractLink.setTo(IltGraphicManager manager,
IltObject to)
Sets the object that is to use as the second extremity of the link in the
given manager.
|
void |
IltAbstractLink.setToOverride(IltGraphicManager manager,
IltObject newEnd)
Changes the override setting for the "to" end of a (yet nonexistent)
graphic representation.
|
void |
IltShelf.setTopLeftPoint(IltGraphicManager manager,
IltGraphic graphic,
IlvPoint position,
IlpPositionSource reason)
Changes the shape graphic setting.
|
void |
IltShelf.setTopLeftPoint(IltGraphicManager manager,
IlvPoint topLeftPoint)
Deprecated.
Please use
setPosition instead. |
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 |
IltObject.setVisible(IltGraphicManager manager,
boolean visible)
Deprecated.
To control the visibility of an object, add or remove it
from the datasource, or install a filter on the adapter.
|
void |
IltObject.startVisibility(IltGraphicManager manager,
IltGraphic graphic)
This is called when a graphic representation in a given view is created
and made visible at once.
|
Object |
IltShelfItem.transformPosition(IltGraphicManager manager,
Object position)
Calculates the transformed position according to the manager's transformer
and the given parameter.
|
Object |
IltShelf.transformPosition(IltGraphicManager manager,
Object position)
Applies the manager transformer to the position parameter.
|
Object |
IltRectGroup.transformPosition(IltGraphicManager manager,
Object position)
Applies the manager transformer to the position parameter.
|
Object |
IltPolyGroup.transformPosition(IltGraphicManager manager,
Object position)
Applies the manager transformer to the position parameter.
|
Object |
IltOffPageConnector.transformPosition(IltGraphicManager manager,
Object position)
Applies the manager transformer to the position parameter.
|
abstract Object |
IltObject.transformPosition(IltGraphicManager manager,
Object position)
Applies the manager transformer to the position/shape parameter and
returns the new position/shape.
|
Object |
IltNetworkElement.transformPosition(IltGraphicManager manager,
Object position)
Applies the manager transformer to the position parameter.
|
Object |
IltLinearGroup.transformPosition(IltGraphicManager manager,
Object position)
Applies the manager transformer to the position parameter.
|
Object |
IltCardItem.transformPosition(IltGraphicManager manager,
Object position)
Applies the manager transformer to the position parameter.
|
Object |
IltBTSAntenna.transformPosition(IltGraphicManager manager,
Object position)
Applies the manager transformer to the position parameter.
|
Object |
IltBTS.transformPosition(IltGraphicManager manager,
Object position)
Applies the manager transformer to the position parameter.
|
Object |
IltAbstractLink.transformPosition(IltGraphicManager manager,
Object position)
Applies the manager transformer to the position parameter.
|
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.
|
boolean |
IltShelfItem.usingDefaultShape(IltGraphicManager manager)
Computes the graphic representation of the object in the given manager.
|
boolean |
IltRectGroup.usingDefaultShape(IltGraphicManager manager)
Computes the graphic representation of the object in the given manager.
|
boolean |
IltPolyGroup.usingDefaultShape(IltGraphicManager manager)
Computes the graphic representation of the object in the given manager.
|
boolean |
IltObject.usingDefaultShape(IltGraphicManager manager)
Computes the graphic representation of the object in the given manager.
|
boolean |
IltLinearGroup.usingDefaultShape(IltGraphicManager manager)
Computes the graphic representation of the object in the given manager.
|
boolean |
IltAbstractLink.usingDefaultShape(IltGraphicManager manager)
Computes the graphic representation of the object in the given manager.
|
Constructor and Description |
---|
IltGraphicChangedEvent(IltObject source,
IltGraphicManager manager,
IltGraphic graphic)
Creates an event.
|
Modifier and Type | Class and Description |
---|---|
class |
IltComponentManager
This class is the counterpart of Container for IltComponentGraphic objects.
|
Modifier and Type | Method and Description |
---|---|
void |
IltComponentGraphic.afterComputeGraphic(IltObject object,
IltGraphicManager manager)
Deprecated.
This method is called after computing the graphical representation of the
objects.
|
protected void |
IltComponentGraphic.createGraphic(IltObject object,
IltGraphicManager manager)
Deprecated.
Creates the graphical representation of the object in the given graphic manager.
|
void |
IltComponentGraphic.doComputeGraphic(IltObject object,
IltGraphicManager manager,
ilog.tgo.graphic.internal.IltComputeAmount amount)
Deprecated.
Computes the symbolic graphic representation of the object.
|
Constructor and Description |
---|
IltComponentGraphic(IltObject object,
IltGraphicManager manager)
Deprecated.
Default constructor
|
© Copyright Rogue Wave Software, Inc. 1997, 2018. All Rights Reserved.