Uses of Class
ilog.views.IlvLinkImage

Packages that use IlvLinkImage
ilog.views Provides the classes necessary to create a high performance 2D graphic application. 
ilog.views.animation This package contains utilities to show animated transitions between two states of an ILOG JViews manager. 
ilog.views.bpmn Contains the classes for the BPMN Support. 
ilog.views.graphic Contains the predefined graphic objects of JViews. 
ilog.views.graphic.composite Provides classes for creating Composite Graphics. 
ilog.views.graphic.linkbundle Provides a grapher link that stores and represents a bundle of individual links ("sublinks"). 
ilog.views.graphic.linkbundle.event Provides events and event listeners for IlvLinkBundle
ilog.views.graphic.linkpolicy Contains the link shape policies. 
ilog.views.graphlayout A high-level, generic framework for the graph layout services provided by ILOG JViews, which allows you to easily obtain readable representations of graphs and networks. 
ilog.views.graphlayout.bus The Bus Layout algorithm is designed to display bus network topologies, that is, a set of nodes connected to a bus node. 
ilog.views.graphlayout.labellayout.annealing The Annealing Label Layout places labels close to related obstacles such that the amount of overlaps among labels, and between labels and obstacles is small. 
ilog.views.interactor Provides the predefined interactors for a view. 
ilog.views.linkconnector Contains the predefined link connectors of JViews. 
ilog.views.sdm.graphic Contains specialized graphic objects used by the SDM component. 
ilog.views.sdm.interactor Contains specialized interactors for the SDM component. 
ilog.views.sdm.renderer Contains the classes that define the renderers of an SDM engine. 
ilog.views.svg.dom Contains the implementation of SVG DOM and a utility class allowing to deal with the DOM. 
 

Uses of IlvLinkImage in ilog.views
 

Methods in ilog.views with parameters of type IlvLinkImage
static void IlvGrapher.addInterGraphLink(IlvLinkImage link, boolean redraw)
          Adds an intergraph link.
 void IlvGrapher.addLink(IlvLinkImage obj, boolean redraw)
          Adds a link to this grapher.
 void IlvGrapher.addLink(IlvLinkImage obj, int layer, boolean redraw)
          Adds a link to this grapher in a specified layer.
 boolean IlvLinkConnector.allowsConnectionPointMove(IlvLinkImage link, boolean origin)
          Indicates whether a connection point of a link can be moved by interactors.
 void IlvLinkConnector.attach(IlvLinkImage link, boolean origin, boolean redraw)
          Installs the link connector for the origin or destination of link.
abstract  void IlvLinkConnector.connectLink(IlvLinkImage link, IlvPoint p, boolean origin, IlvTransformer t)
          Connects a link to a specified connection point.
 void IlvLinkConnector.detach(IlvLinkImage link, boolean origin, boolean redraw)
          Detaches the link connector from the origin or the destination of a link.
 void IlvLinkConnector.disconnectLink(IlvLinkImage link, boolean origin)
          Disconnects a link from the link connector.
static IlvLinkConnector IlvLinkConnector.Get(IlvLinkImage link, boolean origin)
          Returns the link connector that actually controls the connection point on the origin or destination node of link.
static IlvLinkConnector IlvLinkConnector.GetAttached(IlvLinkImage link, boolean origin)
          Returns the link connector attached to the origin or destination of link using IlvLinkConnector.attach(IlvLinkImage, boolean, boolean), or null if none.
abstract  IlvPoint IlvLinkConnector.getConnectionPoint(IlvLinkImage link, boolean origin, IlvTransformer t)
          Returns the position of the point where link is connected to the origin or destination node.
 void IlvLinkConnector.linkRemoved(IlvLinkImage link)
          Called when a link is removed from the node.
 void IlvLinkConnector.read(IlvInputStream stream, IlvLinkImage link, boolean origin)
          Reads information associated with a link from an IlvInputStream.
 void IlvGrapher.removeLink(IlvLinkImage link, boolean redraw)
          Removes a link from the grapher.
 void IlvLinkConnector.write(IlvOutputStream stream, IlvLinkImage link, boolean origin)
          Writes information associated with a link to an IlvOutputStream.
 

Constructors in ilog.views with parameters of type IlvLinkImage
IlvLinkConnector(IlvLinkImage link, boolean origin)
          Creates an IlvLinkConnector attached to the origin or destination of the link link.
IlvLinkImage(IlvLinkImage source)
          Creates an IlvLinkImage by copying an existing one.
 

Uses of IlvLinkImage in ilog.views.animation
 

Methods in ilog.views.animation with parameters of type IlvLinkImage
protected  IlvObjectAnimator IlvManagerAnimator.createLinkImageAnimator(IlvLinkImage link)
          This method is called when a new animator property for an IlvLinkImage that is a link in the graph is needed.
 

Constructors in ilog.views.animation with parameters of type IlvLinkImage
IlvLinkImageAnimator(IlvLinkImage l)
          Creates a new IlvLinkImageAnimator.
 

Uses of IlvLinkImage in ilog.views.bpmn
 

Methods in ilog.views.bpmn that return IlvLinkImage
 IlvLinkImage IlvBPMNMakeSDMLinkInteractor.createObject(IlvGraphic from, IlvGraphic to, IlvPoint[] points, boolean oriented)
           
 

Uses of IlvLinkImage in ilog.views.graphic
 

Subclasses of IlvLinkImage in ilog.views.graphic
 class IlvDoubleLinkImage
          IlvDoubleLinkImage represents the connection between two nodes in a grapher; the link is displayed as three lines containing two right angles.
 class IlvDoubleSplineLinkImage
          IlvDoubleSplineLinkImage represents the connection between two nodes in a grapher; the link is displayed as a spline with two curves.
 class IlvEnhancedPolylineLinkImage
          A link between two nodes of a grapher with several points.
 class IlvOneLinkImage
          IlvOneLinkImage represents the connection between two nodes in a grapher; the link is displayed as two lines following a right angle.
 class IlvOneSplineLinkImage
          IlvOneSplineLinkImage represents the connection between two nodes in a grapher; the link is displayed as a spline curve.
 class IlvPolylineLinkImage
          IlvPolylineLinkImage represents the connection between two nodes in a grapher; the link is displayed as a line that traces several points.
 class IlvSplineLinkImage
          IlvSplineLinkImage represents the connection between two nodes in a grapher; the link is displayed as a series of spline curves that trace the link points.
 

Uses of IlvLinkImage in ilog.views.graphic.composite
 

Subclasses of IlvLinkImage in ilog.views.graphic.composite
 class IlvCompositeLink
          IlvCompositeLink represents a link between two nodes that can be decorated with IlvGraphic instances.
 

Methods in ilog.views.graphic.composite that return IlvLinkImage
 IlvLinkImage IlvCompositeLink.getLink()
          Returns the link responsible for the rendering
 

Methods in ilog.views.graphic.composite with parameters of type IlvLinkImage
 void IlvCompositeLink.setLink(IlvLinkImage link)
          Sets the link responsible for the rendering.
 

Constructors in ilog.views.graphic.composite with parameters of type IlvLinkImage
IlvCompositeLink(IlvGraphic from, IlvGraphic to, boolean oriented, IlvLinkImage link)
          Creates a new IlvCompositeLink instance.
 

Uses of IlvLinkImage in ilog.views.graphic.linkbundle
 

Subclasses of IlvLinkImage in ilog.views.graphic.linkbundle
 class IlvLinkBundle
          The IlvLinkBundle class provides a link object that stores and represents a bundle of individual links ("sublinks").
 

Methods in ilog.views.graphic.linkbundle that return IlvLinkImage
 IlvLinkImage IlvLinkBundle.getOverviewLink()
          Returns the overview link.
 IlvLinkImage IlvLinkBundle.getSublink(IlvPoint tp, IlvTransformer t)
          Returns the sublink located at the specified transformed point, or null if any.
 IlvLinkImage IlvLinkBundle.getSublink(IlvPoint tp, IlvTransformer t, boolean traverse)
          Returns the sublink located at the specified transformed point, or null if any.
 IlvLinkImage IlvLinkBundle.getSublink(int index)
          Returns the sublink of this bundle at the given position.
 IlvLinkImage[] IlvLinkBundle.getSublinks()
          Returns the sublinks of this object.
 

Methods in ilog.views.graphic.linkbundle with parameters of type IlvLinkImage
 void IlvLinkBundle.addSublink(IlvLinkImage sublink)
          Adds a sublink at the end of the link bundle.
 void IlvLinkBundle.addSublink(int index, IlvLinkImage sublink)
          Adds a sublink at the specified index in the link bundle.
 IlvSelection IlvLinkBundle.getSelection(IlvLinkImage sublink)
          Returns the selection object (instance of IlvSelection) associated with the specified sublink, or null if the sublink is not selected.
 boolean IlvLinkBundle.isSelected(IlvLinkImage sublink)
          Returns true if the specified sublink is selected.
 void IlvLinkBundle.removeSublink(IlvLinkImage sublink)
          Removes a sublink from the link bundle.
protected  void IlvLinkBundle.selectionChanged(IlvLinkImage sublink)
          Called when a selection changes in the link bundle.
 void IlvLinkBundle.setOverviewLink(IlvLinkImage link)
          Sets the link responsible for the rendering of the link bundle in collapsed state (see IlvLinkBundle.isCollapsed()).
 void IlvLinkBundle.setSelected(IlvLinkImage sublink, boolean select)
          Selects or deselects the specified sublink.
 void IlvLinkBundle.setSublink(int index, IlvLinkImage sublink)
          Sets the given sublink at the supplied position.
 void IlvLinkBundle.setSublinks(IlvLinkImage[] sublinks)
          Sets a new collection of sublinks for this link bundle.
 

Constructors in ilog.views.graphic.linkbundle with parameters of type IlvLinkImage
IlvLinkBundle(IlvGraphic from, IlvGraphic to, boolean oriented, IlvPoint[] points, IlvLinkImage overviewLink)
          Creates a new IlvLinkBundle instance.
 

Uses of IlvLinkImage in ilog.views.graphic.linkbundle.event
 

Methods in ilog.views.graphic.linkbundle.event that return IlvLinkImage
 IlvLinkImage LinkBundleSelectionChangedEvent.getSublink()
          Returns the sublink whose selection has changed.
 

Methods in ilog.views.graphic.linkbundle.event with parameters of type IlvLinkImage
 void LinkBundleSelectionChangedEvent.setSublink(IlvLinkImage sublink)
          Changes the sublink whose selection has changed.
 

Constructors in ilog.views.graphic.linkbundle.event with parameters of type IlvLinkImage
LinkBundleSelectionChangedEvent(IlvLinkBundle linkBundle, IlvLinkImage sublink)
          Creates the event.
 

Uses of IlvLinkImage in ilog.views.graphic.linkpolicy
 

Subclasses of IlvLinkImage in ilog.views.graphic.linkpolicy
 class IlvCrossingAwareLinkImage
          An IlvCrossingAwareLinkImage is a link between two nodes of a grapher with several bend points, that is is aware of link crossings.
 class IlvPolicyAwareLinkImage
          IlvPolicyAwareLinkImage is a subclass of IlvPolylineLinkImage used to set the format of the line linking two nodes.
 

Methods in ilog.views.graphic.linkpolicy with parameters of type IlvLinkImage
 void IlvBridgeCrossings.addCrossingBound(IlvRect boundingRect, IlvTransformer t, IlvLinkImage link1, IlvLinkImage link2, IlvPoint p0, IlvPoint p1, IlvPoint p2, IlvPoint p3, float startGap, float endGap, float normalGap)
          Adds the bound of the crossing to the input bounding rectangle.
 void IlvTunnelCrossings.addCrossingBound(IlvRect boundingRect, IlvTransformer t, IlvLinkImage link1, IlvLinkImage link2, IlvPoint p0, IlvPoint p1, IlvPoint p2, IlvPoint p3, float startGap, float endGap, float normalGap)
          Adds the bound of the crossing to the input bounding rectangle.
 void IlvCrossingGraphic.addCrossingBound(IlvRect boundingRect, IlvTransformer t, IlvLinkImage link1, IlvLinkImage link2, IlvPoint p0, IlvPoint p1, IlvPoint p2, IlvPoint p3, float startGap, float endGap, float normalGap)
          Adds the bound of the crossing to the input bounding rectangle.
 void IlvBundleLinkShapePolicy.afterAdd(IlvLinkImage link)
          Allows the policy to react after a link with installed policy is added to a grapher.
 void IlvCrossingLinkShapePolicy.afterAdd(IlvLinkImage link)
          Allows the policy to react after a link with installed policy is added to a grapher.
 void IlvAbstractLinkShapePolicy.afterAdd(IlvLinkImage link)
          Allows the policy to react after a link with installed policy is added to a grapher.
 void IlvOrthogonalLinkShapePolicy.afterAdd(IlvLinkImage link)
          Allows the policy to react after a link with installed policy is added to a grapher.
 void IlvLinkShapePolicy.afterAdd(IlvLinkImage link)
          Allows the policy to react after a link with installed policy is added to a grapher.
 void IlvCrossingLinkShapePolicy.afterAny(IlvLinkImage link)
          Allows the policy to react after any of onInstall, onUninstall, afterAdd, beforeRemove, afterSetIntermediateLinkPoints, afterInsertPoint, afterRemovePoint, afterMovePoint, afterApplyTransform, afterFromNodeMoved, and afterToNodeMoved.
 void IlvAbstractLinkShapePolicy.afterAny(IlvLinkImage link)
          Allows the policy to react after any of onInstall, onUninstall, afterAdd, beforeRemove, afterSetIntermediateLinkPoints, afterInsertPoint, afterRemovePoint, afterMovePoint, afterApplyTransform, afterFromNodeMoved, and afterToNodeMoved.
 void IlvLinkShapePolicy.afterAny(IlvLinkImage link)
          Allows the policy to react after any of onInstall, onUninstall, afterAdd, beforeRemove, afterSetIntermediateLinkPoints, afterInsertPoint, afterRemovePoint, afterMovePoint, afterApplyTransform, afterFromNodeMoved, and afterToNodeMoved.
 void IlvCrossingLinkShapePolicy.afterApplyTransform(IlvLinkImage link, IlvTransformer t)
          Allows the policy to react after a transformation was applied.
 void IlvAbstractLinkShapePolicy.afterApplyTransform(IlvLinkImage link, IlvTransformer t)
          Allows the policy to react after a transformation was applied.
 void IlvOrthogonalLinkShapePolicy.afterApplyTransform(IlvLinkImage link, IlvTransformer t)
          Allows the policy to react after a transformation was applied.
 void IlvLinkShapePolicy.afterApplyTransform(IlvLinkImage link, IlvTransformer t)
          Allows the policy to react after a transformation was applied.
 void IlvBundleLinkShapePolicy.afterFromNodeMoved(IlvLinkImage link)
          Allows the policy to react after the source node of the link was moved.
 void IlvCrossingLinkShapePolicy.afterFromNodeMoved(IlvLinkImage link)
          Allows the policy to react after the source node of the link was moved.
 void IlvAbstractLinkShapePolicy.afterFromNodeMoved(IlvLinkImage link)
          Allows the policy to react after the source node of the link was moved.
 void IlvOrthogonalLinkShapePolicy.afterFromNodeMoved(IlvLinkImage link)
          Allows the policy to react after the source node of the link was moved.
 void IlvLinkShapePolicy.afterFromNodeMoved(IlvLinkImage link)
          Allows the policy to react after the source node of the link was moved.
 void IlvBundleLinkShapePolicy.afterInsertPoint(IlvLinkImage link, int index, IlvTransformer t)
          Allows the policy to react after a point was inserted.
 void IlvCrossingLinkShapePolicy.afterInsertPoint(IlvLinkImage link, int index, IlvTransformer t)
          Allows the policy to react after a point was inserted.
 void IlvAbstractLinkShapePolicy.afterInsertPoint(IlvLinkImage link, int index, IlvTransformer t)
          Allows the policy to react after a point was inserted.
 void IlvOrthogonalLinkShapePolicy.afterInsertPoint(IlvLinkImage link, int index, IlvTransformer t)
          Allows the policy to react after a point was inserted.
 void IlvLinkShapePolicy.afterInsertPoint(IlvLinkImage link, int index, IlvTransformer t)
          Allows the policy to react after a point was inserted.
 void IlvCrossingLinkShapePolicy.afterMovePoint(IlvLinkImage link, int index, IlvTransformer t)
          Allows the policy to react after a point was moved.
 void IlvAbstractLinkShapePolicy.afterMovePoint(IlvLinkImage link, int index, IlvTransformer t)
          Allows the policy to react after a point was moved.
 void IlvOrthogonalLinkShapePolicy.afterMovePoint(IlvLinkImage link, int index, IlvTransformer t)
          Allows the policy to react after a point was moved.
 void IlvLinkShapePolicy.afterMovePoint(IlvLinkImage link, int index, IlvTransformer t)
          Allows the policy to react after a point was moved.
 void IlvBundleLinkShapePolicy.afterRemovePoint(IlvLinkImage link, int index, IlvTransformer t)
          Allows the policy to react after a point was removed.
 void IlvCrossingLinkShapePolicy.afterRemovePoint(IlvLinkImage link, int index, IlvTransformer t)
          Allows the policy to react after a point was removed.
 void IlvAbstractLinkShapePolicy.afterRemovePoint(IlvLinkImage link, int index, IlvTransformer t)
          Allows the policy to react after a point was removed.
 void IlvOrthogonalLinkShapePolicy.afterRemovePoint(IlvLinkImage link, int index, IlvTransformer t)
          Allows the policy to react after a point was removed.
 void IlvLinkShapePolicy.afterRemovePoint(IlvLinkImage link, int index, IlvTransformer t)
          Allows the policy to react after a point was removed.
 void IlvBundleLinkShapePolicy.afterSetIntermediateLinkPoints(IlvLinkImage link)
          Allows the policy to react after the intermediate points were set.
 void IlvCrossingLinkShapePolicy.afterSetIntermediateLinkPoints(IlvLinkImage link)
          Allows the policy to react after the intermediate points were set.
 void IlvAbstractLinkShapePolicy.afterSetIntermediateLinkPoints(IlvLinkImage link)
          Allows the policy to react after the intermediate points were set.
 void IlvOrthogonalLinkShapePolicy.afterSetIntermediateLinkPoints(IlvLinkImage link)
          Allows the policy to react after the intermediate points were set.
 void IlvLinkShapePolicy.afterSetIntermediateLinkPoints(IlvLinkImage link)
          Allows the policy to react after the intermediate points were set.
 void IlvBundleLinkShapePolicy.afterToNodeMoved(IlvLinkImage link)
          Allows the policy to react after the target node of the link was moved.
 void IlvCrossingLinkShapePolicy.afterToNodeMoved(IlvLinkImage link)
          Allows the policy to react after the target node of the link was moved.
 void IlvAbstractLinkShapePolicy.afterToNodeMoved(IlvLinkImage link)
          Allows the policy to react after the target node of the link was moved.
 void IlvOrthogonalLinkShapePolicy.afterToNodeMoved(IlvLinkImage link)
          Allows the policy to react after the target node of the link was moved.
 void IlvLinkShapePolicy.afterToNodeMoved(IlvLinkImage link)
          Allows the policy to react after the target node of the link was moved.
 boolean IlvAbstractLinkShapePolicy.allowApplyTransform(IlvLinkImage link, IlvTransformer t)
          Returns true if the policy allows to apply a transformation.
 boolean IlvLinkShapePolicy.allowApplyTransform(IlvLinkImage link, IlvTransformer t)
          Returns true if the policy allows to apply a transformation.
 boolean IlvAbstractLinkShapePolicy.allowInsertPoint(IlvLinkImage link, int index, float x, float y, IlvTransformer t)
          Returns true if the policy allows to insert the point.
 boolean IlvLinkShapePolicy.allowInsertPoint(IlvLinkImage link, int index, float x, float y, IlvTransformer t)
          Returns true if the policy allows to insert the point.
 boolean IlvAbstractLinkShapePolicy.allowMovePoint(IlvLinkImage link, int index, float x, float y, IlvTransformer t)
          Returns true if the policy allows to move the point.
 boolean IlvOrthogonalLinkShapePolicy.allowMovePoint(IlvLinkImage link, int index, float x, float y, IlvTransformer t)
          Returns true if the policy allows to move the point.
 boolean IlvLinkShapePolicy.allowMovePoint(IlvLinkImage link, int index, float x, float y, IlvTransformer t)
          Returns true if the policy allows to move the point.
 boolean IlvAbstractLinkShapePolicy.allowRemovePoint(IlvLinkImage link, int index, IlvTransformer t)
          Returns true if the policy allows to remove the point.
 boolean IlvOrthogonalLinkShapePolicy.allowRemovePoint(IlvLinkImage link, int index, IlvTransformer t)
          Returns true if the policy allows to remove the point.
 boolean IlvLinkShapePolicy.allowRemovePoint(IlvLinkImage link, int index, IlvTransformer t)
          Returns true if the policy allows to remove the point.
 boolean IlvAbstractLinkShapePolicy.allowSetIntermediateLinkPoints(IlvLinkImage link, IlvPoint[] points, int index, int length)
          Returns true if the policy allows to set the intermediate points.
 boolean IlvLinkShapePolicy.allowSetIntermediateLinkPoints(IlvLinkImage link, IlvPoint[] points, int index, int length)
          Returns true if the policy allows to set the intermediate points.
 void IlvBundleLinkShapePolicy.beforeRemove(IlvLinkImage link)
          Allows the policy to react before a link with installed policy is removed from a grapher.
 void IlvCrossingLinkShapePolicy.beforeRemove(IlvLinkImage link)
          Allows the policy to react before a link with installed policy is removed from a grapher.
 void IlvAbstractLinkShapePolicy.beforeRemove(IlvLinkImage link)
          Allows the policy to react before a link with installed policy is removed from a grapher.
 void IlvLinkShapePolicy.beforeRemove(IlvLinkImage link)
          Allows the policy to react before a link with installed policy is removed from a grapher.
 boolean IlvBundleLinkShapePolicy.canBundle(IlvLinkImage link)
          This method decides whether a link can be bundled.
 boolean IlvBridgeCrossings.containsAtCrossing(IlvPoint p, IlvPoint tp, IlvTransformer t, IlvLinkImage link1, IlvLinkImage link2, IlvPoint p0, IlvPoint p1, IlvPoint p2, IlvPoint p3, float startGap, float endGap, float normalGap)
          Tests if a point lies within the drawing of a crossing.
 boolean IlvTunnelCrossings.containsAtCrossing(IlvPoint p, IlvPoint tp, IlvTransformer t, IlvLinkImage link1, IlvLinkImage link2, IlvPoint p0, IlvPoint p1, IlvPoint p2, IlvPoint p3, float startGap, float endGap, float normalGap)
          Tests if a point lies within the drawing of a crossing.
 boolean IlvAbstractCrossingGraphic.containsAtCrossing(IlvPoint p, IlvPoint tp, IlvTransformer t, IlvLinkImage link1, IlvLinkImage link2, IlvPoint p0, IlvPoint p1, IlvPoint p2, IlvPoint p3, float startGap, float endGap, float normalGap)
          Tests if a point lies within the drawing of a crossing.
 boolean IlvCrossingGraphic.containsAtCrossing(IlvPoint p, IlvPoint tp, IlvTransformer t, IlvLinkImage link1, IlvLinkImage link2, IlvPoint p0, IlvPoint p1, IlvPoint p2, IlvPoint p3, float startGap, float endGap, float normalGap)
          Tests if a point lies within the drawing of a crossing.
 void IlvBridgeCrossings.drawCrossing(Graphics dst, IlvTransformer t, IlvLinkImage link1, IlvLinkImage link2, IlvPoint p0, IlvPoint p1, IlvPoint p2, IlvPoint p3, float startGap, float endGap, float normalGap)
          Draws the crossing between the input links.
 void IlvTunnelCrossings.drawCrossing(Graphics dst, IlvTransformer t, IlvLinkImage link1, IlvLinkImage link2, IlvPoint p0, IlvPoint p1, IlvPoint p2, IlvPoint p3, float startGap, float endGap, float normalGap)
          Draws the crossing between the input links.
 void IlvCrossingGraphic.drawCrossing(Graphics dst, IlvTransformer t, IlvLinkImage link1, IlvLinkImage link2, IlvPoint p0, IlvPoint p1, IlvPoint p2, IlvPoint p3, float startGap, float endGap, float normalGap)
          Draws the crossing between the input links.
 IlvPoint[] IlvAbstractLinkShapePolicy.getLinkPoints(IlvLinkImage link, IlvTransformer t)
          Returns the points that define the link.
 IlvPoint[] IlvOrthogonalLinkShapePolicy.getLinkPoints(IlvLinkImage link, IlvTransformer t)
          Returns the points that define the link.
 IlvPoint[] IlvLinkShapePolicy.getLinkPoints(IlvLinkImage link, IlvTransformer t)
          Returns the points that define the link.
 IlvPoint IlvAbstractLinkShapePolicy.getPointAt(IlvLinkImage link, int index, IlvTransformer t)
          Returns the point at a given index.
 IlvPoint IlvOrthogonalLinkShapePolicy.getPointAt(IlvLinkImage link, int index, IlvTransformer t)
          Returns the point at a given index.
 IlvPoint IlvLinkShapePolicy.getPointAt(IlvLinkImage link, int index, IlvTransformer t)
          Returns the point at a given index.
 void IlvBundleLinkShapePolicy.onInstall(IlvLinkImage link)
          Allows the policy to react immediately when it is installed at a link.
 void IlvCrossingLinkShapePolicy.onInstall(IlvLinkImage link)
          Allows the policy to react immediately when it is installed at a link.
 void IlvAbstractLinkShapePolicy.onInstall(IlvLinkImage link)
          Allows the policy to react immediately when it is installed at a link.
 void IlvOrthogonalLinkShapePolicy.onInstall(IlvLinkImage link)
          Allows the policy to react immediately when it is installed at a link.
 void IlvLinkShapePolicy.onInstall(IlvLinkImage link)
          Allows the policy to react immediately when it is installed at a link.
 void IlvBundleLinkShapePolicy.onUninstall(IlvLinkImage link)
          Allows the policy to react immediately when it is removed from a link.
 void IlvCrossingLinkShapePolicy.onUninstall(IlvLinkImage link)
          Allows the policy to react immediately when it is removed from a link.
 void IlvAbstractLinkShapePolicy.onUninstall(IlvLinkImage link)
          Allows the policy to react immediately when it is removed from a link.
 void IlvLinkShapePolicy.onUninstall(IlvLinkImage link)
          Allows the policy to react immediately when it is removed from a link.
 

Uses of IlvLinkImage in ilog.views.graphlayout
 

Constructors in ilog.views.graphlayout with parameters of type IlvLinkImage
IlvClipLinkConnector(IlvLinkImage link, boolean origin)
          Deprecated. Creates an IlvClipLinkConnector attached to the origin or destination of the link link.
IlvRelativeLinkConnector(IlvLinkImage link, boolean origin)
          Deprecated. Creates an IlvRelativeLinkConnector attached to the origin or destination of the link link.
 

Uses of IlvLinkImage in ilog.views.graphlayout.bus
 

Methods in ilog.views.graphlayout.bus with parameters of type IlvLinkImage
 void IlvBusLinkConnector.connectLink(IlvLinkImage link, IlvPoint p, boolean origin, IlvTransformer t)
          This implementation of the abstract method does nothing.
 IlvPoint IlvBusLinkConnector.getConnectionPoint(IlvLinkImage link, boolean origin, IlvTransformer transformer)
          Returns the connection point of link on the bus.
 

Uses of IlvLinkImage in