Uses of Class
ilog.cpl.graphic.IlpPositionSource

Packages that use IlpPositionSource
ilog.cpl ILOG CPL main package containing ILOG CPL top-level JavaBeansTM and widely used classes. 
ilog.cpl.graph Contains the abstract common implementation for both the IlpNetwork and IlpEquipment components, including a model, a view and a controller and related classes. 
ilog.cpl.graphic Provides classes and interfaces to create graphic objects. 
ilog.cpl.network Together with ilog.cpl.IlpNetwork, this package constitutes the ILOG JTGO Network component. 
ilog.tgo.composite Provides the classes for handling the zoom policies and the layer policies. 
ilog.tgo.graphic Provides all the classes for handling the graphical representations of the telecom objects. 
ilog.tgo.model Provides classes for telecom objects, states and alarms. 
 

Uses of IlpPositionSource in ilog.cpl
 

Methods in ilog.cpl that return IlpPositionSource
 IlpPositionSource IlpEquipment.getPositionSource(IlpRepresentationObject object)
          Returns the source of the current position or shape of an object.
 IlpPositionSource IlpNetwork.getPositionSource(IlpRepresentationObject object)
          Returns the source of the current position or shape of an object.
 

Methods in ilog.cpl with parameters of type IlpPositionSource
 void IlpEquipment.setPosition(IlpRepresentationObject object, IlpPosition position, IlpPositionSource source)
          Sets the current position or shape of an object.
 void IlpNetwork.setPosition(IlpRepresentationObject object, IlpPosition position, IlpPositionSource source)
          Sets the current position or shape of an object.
 

Uses of IlpPositionSource in ilog.cpl.graph
 

Methods in ilog.cpl.graph that return IlpPositionSource
 IlpPositionSource IlpGraphView.getPositionSource(IlpRepresentationObject object)
          Returns the source of current position or shape of an object.
 IlpPositionSource IlpPositionChange.getSource()
          Returns the source of the new position, which indicates the reason for the change.
 

Methods in ilog.cpl.graph with parameters of type IlpPositionSource
protected  boolean IlpGraphHandlerWithDataSource.propagatePositionToDataSource(IlpObject object, IlpPositionSource reason)
          This method determines whether position changes are forwarded to the data source, or kept local in the graph view.
 void IlpGraphView.setPosition(IlpRepresentationObject object, IlpPosition position, IlpPositionSource source)
          Sets the current position or shape of an object.
 

Constructors in ilog.cpl.graph with parameters of type IlpPositionSource
IlpPositionChange(IlpPosition position, IlpPositionSource source)
          Constructor.
 

Uses of IlpPositionSource in ilog.cpl.graphic
 

Fields in ilog.cpl.graphic declared as IlpPositionSource
static IlpPositionSource IlpPositionSource.BACKEND
          The position has been set by the adapter or through the IlpRepresentationObject/IlpGraphicViewStyleManager API directly.
static IlpPositionSource IlpPositionSource.LAYOUT
          The position has been set by an automatic layout algorithm.
static IlpPositionSource IlpPositionSource.USER
          The position has been set by the user through an interaction.
 

Uses of IlpPositionSource in ilog.cpl.network
 

Constructors in ilog.cpl.network with parameters of type IlpPositionSource
IlpPositionChange(IlpPosition position, IlpPositionSource source)
          Deprecated. Please use IlpPositionChange instead.
 

Uses of IlpPositionSource in ilog.tgo.composite
 

Methods in ilog.tgo.composite with parameters of type IlpPositionSource
 void IltcCompositeGraphic.applyTransform(IlvTransformer t, IlpPositionSource reason)
          Applies a transform to this graphic object as a whole.
 

Uses of IlpPositionSource in ilog.tgo.graphic
 

Methods in ilog.tgo.graphic that return IlpPositionSource
 IlpPositionSource IltShapeChangedEvent.getNewShapeSource()
          Returns the reason for the shape change, or null if it is unknown.
 

Methods in ilog.tgo.graphic with parameters of type IlpPositionSource
 void IltCompositeGraphic.applyTransform(IlvTransformer t, IlpPositionSource reason)
          Applies a transform to this graphic object as a whole.
 void IltCompositeGraphic.noteShapeChanged(Object newShapeInManager, IlpPositionSource reason)
           
 void IltCompositeGrapher.setLinkSkeleton(IltCompositeGraphic graphic, IlpPolyline newshape, IlpPositionSource reason)
          Changes the shape of a link.
 

Constructors in ilog.tgo.graphic with parameters of type IlpPositionSource
IltShapeChangedEvent(Object source, Object newShapeInManager, IlpPositionSource newShapeSource)
          Creates an event.
 

Uses of IlpPositionSource in ilog.tgo.model
 

Methods in ilog.tgo.model with parameters of type IlpPositionSource
 void IltBTSAntenna.applyTransform(IltGraphicManager manager, IltGraphic graphic, IlvTransformer t, IlpPositionSource reason)
          Deprecated.  
 void IltCardItem.applyTransform(IltGraphicManager manager, IltGraphic graphic, IlvTransformer transf, IlpPositionSource reason)
          Deprecated.  
 void IltLinearGroup.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:
  • Get the IlpPosition for the IlpObject in question through the IltObject.PositionAttribute attribute.
  • Cast this IlpPosition into proper type (IlpPoint, IlpRect, IlpPolyline, IlpPolygon, or your own IlpPosition implementation).
  • Properly apply the IlvTransformer to the IlpPosition object.
  • Set the property back on the IlpObject.
       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 IltOffPageConnector.applyTransform(IltGraphicManager manager, IltGraphic graphic, IlvTransformer t, IlpPositionSource reason)
          Deprecated.  
 void IltPolyGroup.applyTransform(IltGraphicManager manager, IltGraphic graphic, IlvTransformer t, IlpPositionSource reason)
          Deprecated.  
 void IltShelf.applyTransform(IltGraphicManager manager, IltGraphic graphic, IlvTransformer t, IlpPositionSource reason)
          Deprecated.  
 void IltShelfItem.applyTransform(IltGraphicManager manager, IltGraphic graphic, IlvTransformer t, IlpPositionSource reason)
          Deprecated.  
 void IltRectGroup.applyTransform(IltGraphicManager manager, IltGraphic graphic, IlvTransformer t, IlpPositionSource reason)
          Deprecated.  
 void IltAbstractLink.applyTransform(IltGraphicManager manager, IltGraphic graphic, IlvTransformer t, IlpPositionSource reason)
          Deprecated.  
 void IltBTS.applyTransform(IltGraphicManager manager, IltGraphic graphic, IlvTransformer t, IlpPositionSource reason)
          Deprecated.  
 void IltNetworkElement.applyTransform(IltGraphicManager manager, IltGraphic graphic, IlvTransformer t, IlpPositionSource reason)
          Deprecated.  
 void IltObject.applyTransform(IltGraphicManager manager, IlvTransformer t, IlpPositionSource reason)
          Deprecated.  
 void IltObject.applyTransformInManager(IltGraphicManager manager, IltGraphic graphic, IlvTransformer t, IlpPositionSource reason)
          Deprecated.  
 void IltBTSAntenna.setCenterPoint(IltGraphicManager manager, IltGraphic graphic, IlvPoint position, IlpPositionSource reason)
          Changes the shape graphic setting.
 void IltCardItem.setCenterPoint(IltGraphicManager manager, IltGraphic graphic, IlvPoint position, IlpPositionSource reason)
          Changes the position of the graphic representation in a given IltGraphicManager.
 void IltLinearGroup.setCenterPoint(IltGraphicManager manager, IltGraphic graphic, IlvPoint position, IlpPositionSource reason)
          Changes the position of the graphic representation in a given IltGraphicManager.
abstract  void IltObject.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.
 void IltPolyGroup.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 IltShelfItem.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 IltAbstractLink.setCenterPoint(IltGraphicManager manager, IltGraphic graphic, IlvPoint position, IlpPositionSource reason)
          Changes the position of the graphic representation in a given IltcObjectContainer.
 void IltBTS.setCenterPoint(IltGraphicManager manager, IltGraphic graphic, IlvPoint position, IlpPositionSource reason)
          Changes the shape graphic setting.
 void IltNetworkElement.setCenterPoint(IltGraphicManager manager, IltGraphic graphic, IlvPoint position, IlpPositionSource reason)
          Changes the shape graphic setting.
 void IltObject.setCenterPoint(IltGraphicManager manager, IlvPoint position, IlpPositionSource reason)
          Deprecated.  
 void IltObject.setCenterPointInManager(IltGraphicManager manager, IltGraphic graphic, IlvPoint position, IlpPositionSource reason)
           
 void IltPolyGroup.setShape(IltGraphicManager manager, IlpPolygon shape, IlpPositionSource reason)
          Deprecated. Adding a object to a datasource, connected to a graphic component such as an IlpNetwork, is enough to make its graphic representation visible. When working with datasource, use IltObject.setPosition(IlpPosition) instead.
 void IltLinearGroup.setShape(IltGraphicManager manager, IlpPolyline shape, IlpPositionSource reason)
          Deprecated. Adding a object to a datasource, connected to a graphic component such as an IlpNetwork, is enough to make its graphic representation visible. When working with datasource, use IltObject.setPosition(IlpPosition) instead.
 void IltAbstractLink.setShape(IltGraphicManager manager, IlpPolyline shape, IlpPositionSource reason)
          Deprecated. Adding a object to a datasource, connected to a graphic component such as an IlpNetwork, is enough to make its graphic representation visible. When working with datasources, please use setPosition instead.
 void IltLinkBundle.setShape(IltGraphicManager manager, IltGraphic graphic, IlpPolyline shape, IlpPositionSource reason)
          Changes the shape graphic setting.
 void IltAbstractLink.setShape(IltGraphicManager manager, IltGraphic graphic, IlpPolyline shape, IlpPositionSource reason)
          Changes the shape graphic setting.
 void IltShelfItem.setShape(IltGraphicManager manager, IltGraphic graphic, IlvRect position, IlpPositionSource reason)
          Changes the shape graphic setting.
 void IltGroup.setShape(IltGraphicManager manager, IltGraphic graphic, Object shape, IlpPositionSource reason)
          Update the graphic settings related to shape and GIC offsets.
 void IltShelfItem.setShape(IltGraphicManager manager, IlvRect shape, IlpPositionSource reason)
          Deprecated. Adding a object to a datasource, connected to a graphic component such as an IlpNetwork, is enough to make its graphic representation visible. When working with datasource, use IltObject.setPosition(IlpPosition) instead.
 void IltRectGroup.setShape(IltGraphicManager manager, IlvRect shape, IlpPositionSource reason)
          Deprecated. Adding a object to a datasource, connected to a graphic component such as an IlpNetwork, is enough to make its graphic representation visible. When working with datasource, use IltObject.setPosition(IlpPosition) instead.
 void IltPolyGroup.setShapeInManager(IltGraphicManager manager, IltGraphic graphic, IlpPolygon shape, IlpPositionSource reason)
          Changes the position of the graphic representation in a given IltGraphicManager.
 void IltLinearGroup.setShapeInManager(IltGraphicManager manager, IltGraphic graphic, IlpPolyline shape, IlpPositionSource reason)
          Changes the position of the graphic representation in a given IltGraphicManager.
 void IltLinkBundle.setShapeInManager(IltGraphicManager manager, IltGraphic graphic, IlpPolyline shape, IlpPositionSource reason, boolean assumeVisible)
          Changes the shape of the link in the given manager, using the provided composite graphic.
 void IltAbstractLink.setShapeInManager(IltGraphicManager manager, IltGraphic graphic, IlpPolyline shape, IlpPositionSource reason, boolean assumeVisible)
          Changes the shape of the link in the given manager, using the provided composite graphic.
protected  void IltAbstractLink.setShapeInManagerAux(IltGraphicManager manager, IltGraphic graphic, IlpPolyline shape, IlpPositionSource reason, boolean assumeVisible)
          Changes the position of the graphic representation in a given IltGraphicManager.
 void IltCardItem.setShapeInManagerGraphicSetting(IltGraphic graphic, Object position, IlpPositionSource reason)
          Set the ShapeInManager graphic setting.
 void IltLinearGroup.setShapeInManagerGraphicSetting(IltGraphic graphic, Object newShape, IlpPositionSource reason)
           
 void IltObject.setShapeInManagerGraphicSetting(IltGraphic graphic, Object newShape, IlpPositionSource reason)
           
 void IltPolyGroup.setShapeInManagerGraphicSetting(IltGraphic graphic, Object newShape, IlpPositionSource reason)
           
 void IltShelfItem.setShapeInManagerGraphicSetting(IltGraphic graphic, Object newShape, IlpPositionSource reason)
           
 void IltRectGroup.setShapeInManagerGraphicSetting(IltGraphic graphic, Object newShape, IlpPositionSource reason)
           
 void IltAbstractLink.setShapeInManagerGraphicSetting(IltGraphic graphic, Object newShape, IlpPositionSource reason)
          Sets the graphic settings responsible for the shape of the object in a given manager
 void IltShelf.setTopLeftPoint(IltGraphicManager manager, IltGraphic graphic, IlvPoint position, IlpPositionSource reason)
          Changes the shape graphic setting.
 void IltShelf.setTopLeftPoint(IltGraphicManager manager, IlvPoint topLeftPoint, IlpPositionSource reason)
          Deprecated. Please use setPosition instead.
 void IltShelf.setTopLeftPointInManager(IltGraphicManager manager, IltGraphic graphic, IlvPoint position, IlpPositionSource reason)
          Changes the position of the graphic representation in a given IltGraphicManager.
 void 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 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 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 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 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 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 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 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 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 IltAbstractLink.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 IltNetworkElement.updateShapeGraphicSettingInManager(IltGraphicManager manager, IltGraphic graphic, Object newShape, IlpPositionSource reason)
          If the graphic representation is visible, updates the shape graphic setting in manager coordinates.
 



Copyright © 1996-2007 ILOG S.A. All rights reserved.   Documentation homepage.   . All Rights Reserved.