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 |
IltCompositeGraphic
This class describes a composite graphic object for use by TGO.
|
Modifier and Type | Field and Description |
---|---|
protected IltGraphic |
IltCompositeGraphic._parent
Parent graphic, if there is one.
|
Modifier and Type | Method and Description |
---|---|
IltGraphic |
IltGraphicManager.createGraphic(IltObject object)
Deprecated.
Ensures that this object has a graphic representation in a given
IltGraphicManager.
|
IltGraphic |
IltCompositeGrapher.createGraphic(IltObject object)
Ensures that this object has a graphic representation in a given
IltGraphicManager . |
IltGraphic |
IltGraphic.getParentGraphic()
Deprecated.
Returns the graphic object which represents the container this graphic
representation belongs to, in the same IltGraphicManager.
|
IltGraphic |
IltCompositeGraphic.getParentGraphic()
Returns the graphic object which represents the container this graphic
representation belongs to, in the same IltGraphicManager.
|
Modifier and Type | Method and Description |
---|---|
void |
IltGraphicManager.addGraphic(IltGraphic graphic)
Deprecated.
Adds the graphic representation created with
createGraphic in the
graphic manager. |
void |
IltCompositeGrapher.addGraphic(IltGraphic graphic)
Inserts a new graphic representation in the list.
|
void |
IltLegendModifier.apply(IltGraphic graphic)
Deprecated.
Applies the graphic update to a graphic object.
|
Color |
IltCounterMapping.getBackgroundColor(IltGraphic g)
Returns the background color value to be used in the counter decoration.
|
Color |
IltCounterMapping.getBorderColor(IltGraphic g)
Returns the border color value to be used in the counter decoration.
|
Font |
IltCounterMapping.getFont(IltGraphic g)
Returns the font value to be used in the counter decoration.
|
Color |
IltCounterMapping.getForegroundColor(IltGraphic g)
Returns the foreground color value to be used in the counter decoration.
|
static IltObjectInteractorContext |
IltCompositeInteractions.GetObjectContext(IltGraphic composite,
ilog.tgo.graphic.internal.IltGraphicElement element,
IlvObjectInteractorContext origcontext)
Deprecated.
Returns an interactor context, containing information about the
composite graphic object visible, the graphic element and
the interactor context.
|
boolean |
IltCounterMapping.isAntialiasing(IltGraphic g)
Returns the anti-aliasing value to be used in the counter decoration.
|
void |
IltGraphicManager.removeGraphic(IltGraphic graphic)
Deprecated.
Removes the graphic representation from the graphic manager.
|
void |
IltCompositeGrapher.removeGraphic(IltGraphic graphic)
Removes a graphic representation from the list.
|
void |
IltCompositeGraphic.setParentGraphic(IltGraphic parent)
Sets the parent graphic representation.
|
Modifier and Type | Method and Description |
---|---|
IltGraphic |
IltGraphicChangedEvent.getGraphic()
Returns the composite graphic object on which the event has occurred.
|
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).
|
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).
|
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.
|
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.
|
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.applyTransformInManager(IltGraphicManager manager,
IltGraphic graphic,
IlvTransformer t,
IlpPositionSource reason)
Deprecated.
|
protected boolean |
IltGroup.areDecorationsPinned(IltGraphic graphic) |
void |
IltObject.computeGraphic(IltGraphicManager manager,
IltGraphic graphic,
ilog.tgo.graphic.internal.IltComputeAmount amount)
Ensures that this object has a valid graphic representation.
|
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.
|
static IltObject |
IltObject.FromGraphic(IltGraphic graphic)
Deprecated.
Use
IlpGraphic.getRepresentationObject() instead
to retrieve the representation object. With this instance it is possible
to retrieve the business object using IlpRepresentationObject.getIlpObject() . |
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.
|
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(IltGraphic graphic)
Deprecated.
Please use the CSS property
decorationsOffset instead. |
protected IlvPoint |
IltGroup.getDecorationsOffset(IltGraphicManager manager,
IltGraphic graphic)
Returns the decorations offset for the given graphical representation.
|
int |
IltShelfItem.getDefaultLabelPosition(IltGraphic graphic)
Returns a default label position, if the value set in the legend is
IlvDirection.BadPosition . |
int |
IltObject.getDefaultLabelPosition(IltGraphic graphic)
Returns a default label position, if the value set in the legend is
IlvDirection.BadPosition . |
int |
IltLink.getDefaultLabelPosition(IltGraphic graphic)
Returns a default label position, if the value set in the legend is
IlvDirection.BadPosition . |
IltObject |
IltAbstractLink.getFrom(IltGraphic graphic)
Returns the object used as the first extremity of the given graphic
representation of the link.
|
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.
|
int |
IltShelfItem.getLabelDirection(IltGraphic graphic)
Returns the direction of the label set for the given graphic
instance.
|
IlvPoint |
IltObject.getLabelOffset(IltGraphic graphic)
Deprecated.
Please use CSS property
labelOffset instead. |
int |
IltObject.getLabelPosition(IltGraphic graphic)
Deprecated.
Please use CSS property
labelPosition instead. |
float |
IltLinkSet.getLinkDistance(IltGraphicManager manager,
IltGraphic graphic)
Deprecated.
Please use CSS property
linkDistance instead. |
IlpStyle |
IltObject.getLocalStyle(IltGraphic g)
Deprecated.
The Style API has been replaced by the Cascading Style
Sheet mechanism. Please refer to the User's Manual for
further information.
|
IlvPoint |
IltCard.getParentPosition(IltGraphicManager manager,
IltGraphic graphic)
Deprecated.
Please retrieve the parent object and 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.
|
IlpPolyline |
IltAbstractLink.getShapeInManager(IltGraphic graphic)
For convenience, since the above does not really depend on the manager.
|
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.
|
IltObject |
IltAbstractLink.getTo(IltGraphic graphic)
Returns the object used as the second extremity of the given graphic
representation of the link.
|
protected IlvPoint |
IltShelf.getTopLeftPoint(IltGraphicManager manager,
IltGraphic graphic)
Returns the shape graphic setting.
|
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 |
IltChildInitializer.initialize(IltObject object,
IltGraphic graphic)
Deprecated.
This method is called when a graphic representation of a child object
is about to be made visible on behalf of its container.
|
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.
|
protected boolean |
IltShelfItem.isItemMoveable(IltGraphic graphic)
Returns
true if this item can be moved. |
boolean |
IltCardItem.isItemMoveable(IltGraphic graphic)
Check whether or not a card item should be affected by
transformations (when inside a composite card, a card
item should not be affected by zooming transformations).
|
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,
IltGraphic graphic)
Returns the "selected" state of the graphic representation in a given
IltGraphicManager.
|
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.
|
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 |
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.setCenterPointInManager(IltGraphicManager manager,
IltGraphic graphic,
IlvPoint position,
IlpPositionSource reason) |
protected void |
IltGroup.setDecorationsCenterPoint(IltGraphicManager manager,
IltGraphic graphic,
IlvPoint centerPoint)
Sets the absolute center point of the group information cluster in
a given manager.
|
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 |
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.setSelectedInternal(IltGraphicManager manager,
IltGraphic graphic,
boolean selected)
Changes the "selected" state of the graphic representation in a given
IltGraphicManager.
|
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.setShapeGraphicSetting(IltGraphic graphic,
Object newShape)
Sets the graphic settings responsible for the shape of the object.
|
void |
IltRectGroup.setShapeGraphicSetting(IltGraphic graphic,
Object newShape)
Sets the graphic settings responsible for the shape of the object.
|
void |
IltPolyGroup.setShapeGraphicSetting(IltGraphic graphic,
Object newShape)
Sets the graphic settings responsible for the shape of the object.
|
void |
IltObject.setShapeGraphicSetting(IltGraphic graphic,
Object newShape)
Sets the graphic settings responsible for the shape of the object.
|
void |
IltLinearGroup.setShapeGraphicSetting(IltGraphic graphic,
Object newShape)
Sets the graphic settings responsible for the shape of the object.
|
void |
IltCardCarrier.setShapeGraphicSetting(IltGraphic graphic,
Object newShape) |
void |
IltAbstractLink.setShapeGraphicSetting(IltGraphic graphic,
Object newShape)
Sets the graphic settings responsible for the shape of the object.
|
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 |
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.setTopLeftPointInManager(IltGraphicManager manager,
IltGraphic graphic,
IlvPoint position,
IlpPositionSource reason)
Changes the position of the graphic representation in a given
IltGraphicManager.
|
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.
|
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.
|
Constructor and Description |
---|
IltGraphicChangedEvent(IltObject source,
IltGraphicManager manager,
IltGraphic graphic)
Creates an event.
|
Modifier and Type | Class and Description |
---|---|
class |
IltComponentGraphic
Deprecated.
Please use
IlpGraphic object instead. Use its
function getComponent() to retrieve a JComponent,
which you can add to any other JComponent . |
Modifier and Type | Method and Description |
---|---|
IltGraphic |
IltComponentManager.createGraphic(IltObject obj) |
IltGraphic |
IltComponentGraphic.getParentGraphic()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
IltComponentManager.addGraphic(IltGraphic graphic) |
void |
IltComponentManager.removeGraphic(IltGraphic graphic) |
© Copyright Rogue Wave Software, Inc. 1997, 2018. All Rights Reserved.