public class IlvDoubleSplineLinkImage extends IlvDoubleLinkImage
IlvDoubleSplineLinkImage
represents the connection between two
nodes in a grapher
; the link is displayed as a
spline with two curves. For more information about specialized link objects,
see IlvLinkImage.
The default values for an IlvDoubleSplineLinkImage
instance
are as follows:
Color.black
0
IlvStroke.CAP_SQUARE
The following code example shows how to use an
IlvDoubleSplineLinkImage
in a simple Java application:
IlvGraphic node1, node2; IlvGrapher grapher = new IlvGrapher(); IlvDoubleSplineLinkImage link; //Create new ellipse node and add it to the grapher. node1 = new IlvEllipse(new IlvRect(30,10,50,50), true, false); grapher.addNode(node1,false); //Add a new rectangular node to the grapher. node2 = new IlvRectangle(new IlvRect(220,90,50,50), false, true); grapher.addNode(node2, 2, true); //Link the two nodes and add them to a grapher. link = new IlvDoubleSplineLinkImage( node1, node2, IlvDoubleLinkImage.VerticalLink, true); grapher.addLink(link,true);
The following image shows the graphic object created in the code example:
>
IlvDoubleSplineLinkImage
is a custom graphic object, that is, a
subclass of IlvGraphic
. Graphic objects are controlled using
an IlvManager
instance and displayed using one or more
IlvManagerView
instances in a Java Swing application.
For information about generic features for graphic objects, see
IlvGraphic.
IlvPoint
,
IlvManager
,
IlvManagerView
,
IlvStroke
,
Serialized FormHorizontalLink, VerticalLink
Constructor and Description |
---|
IlvDoubleSplineLinkImage(IlvDoubleSplineLinkImage source)
Create a new
IlvDoubleSplineLinkImage by copying the specified one. |
IlvDoubleSplineLinkImage(IlvGraphic from,
IlvGraphic to,
boolean oriented)
Creates a new link image.
|
IlvDoubleSplineLinkImage(IlvGraphic from,
IlvGraphic to,
int orientation,
boolean oriented)
Creates a new link image.
|
IlvDoubleSplineLinkImage(IlvInputStream stream)
Reads the object from an
IlvInputStream . |
Modifier and Type | Method and Description |
---|---|
IlvRect |
boundingBox(IlvTransformer t)
Returns the bounding rectangle of the object.
|
boolean |
contains(IlvPoint p,
IlvPoint tp,
IlvTransformer t)
Tests if a point lies within the outline of the link.
|
IlvGraphic |
copy()
Copies the object.
|
void |
draw(Graphics dst,
IlvTransformer t)
Draws the object.
|
getConnectionPoints, getConnectionReferencePoint, getLinkPoints, getOrientation, getPointAt, getPointsCardinal, setOrientation, write
allowsPointInsertion, allowsPointMove, allowsPointRemoval, applyTransform, arrowBBox, arrowContains, drawArrow, finalize, getArrowSize, getEndCap, getForeground, getFrom, getFromBoundingBox, getFromTransformer, getLineJoin, getLineStyle, getLineWidth, getLineWidth, getLinkConnectorConnectionPoint, getLinkPoints, getLocalTransformerOf, getMaximumLineWidth, getOpposite, getTo, getToBoundingBox, getToTransformer, getVisibleFrom, getVisibleTo, insertPoint, isOriented, isPersistent, isSpline, makeSelection, movePoint, pointsInBBox, removePoint, setEndCap, setForeground, setFrom, setIntermediateLinkPoints, setLineJoin, setLineStyle, setLineWidth, setLinkPoints, setMaximumLineWidth, setOriented, setTo, zoomable
addActionListener, addNamedPropertyListener, allViewsRemoved, baseTextDirectionChanged, blinkingStateOn, boundingBox, callDraw, componentOrientationChanged, getAndAssociateObjectInteractor, getBaseTextDirection, getBlinkingAction, getBlinkingObjectOwner, getBlinkingOffPeriod, getBlinkingOnPeriod, getCenter, getComponentOrientation, getDefaultInteractor, getGraphicBag, GetGraphicObject, getIntersectionWithOutline, getLocale, getName, getNamedProperty, getObjectInteractor, getPopupMenu, getPopupMenu, getPopupMenuName, getProperty, getResolvedBaseTextDirection, getToolTipBaseTextDirection, getToolTipText, getToolTipText, getTopLevelGraphicBag, getTransferData, getTransferDataFlavors, getULocale, getZOrderIndex, hasProperty, inside, intersects, invalidateBBoxCache, invalidateBidiCache, isBaseTextDirectionSensitive, isComponentOrientationSensitive, isDataFlavorSupported, isEditable, isInApplyToObject, isLocaleSensitive, isMovable, isSelectable, isVisible, localeChanged, move, move, moveResize, needsViewNotification, notifyObjectInteractorToManager, processActionEvent, reDraw, registerBlinkingResource, removeActionListener, removeNamedProperty, removeNamedPropertyListener, removeProperty, replaceProperty, resize, rotate, scale, setBackground, setBaseTextDirection, setBaseTextDirectionDuringConstruction, setBlinkingAction, setBlinkingOffPeriod, setBlinkingOnPeriod, setEditable, setFillOn, setGraphicBag, setInApplyToObject, setMovable, setName, setNamedProperty, setNameImpl, setObjectInteractor, setPopupMenu, setPopupMenuName, setProperty, setSelectable, setStrokeOn, setToolTipBaseTextDirection, setToolTipText, setVisible, setZOrderIndex, toString, translate, updateNeedsViewNotification, usesBidiMarkers, viewAddedOrRemoved
public IlvDoubleSplineLinkImage(IlvGraphic from, IlvGraphic to, boolean oriented)
from
- the origin object.to
- the destination object.oriented
- if oriented
is true then an arrow is drawn at the
destination point.public IlvDoubleSplineLinkImage(IlvGraphic from, IlvGraphic to, int orientation, boolean oriented)
from
- the origin object.to
- the destination object.orientation
- the valid values for this may be
IlvDoubleLinkImage.VerticalLink
or
IlvDoubleLinkImage.HorizontalLink
.
It specifies the direction the link takes upon leaving the
from
node.oriented
- if oriented
is true then an arrow is drawn at the
destination point.public IlvDoubleSplineLinkImage(IlvDoubleSplineLinkImage source)
IlvDoubleSplineLinkImage
by copying the specified one.public IlvDoubleSplineLinkImage(IlvInputStream stream) throws IlvReadFileException
IlvInputStream
.stream
- the input stream.IlvReadFileException
- if the format is not correct.public IlvGraphic copy()
copy
in class IlvDoubleLinkImage
IlvGraphic
instance.IlvGraphic
public void draw(Graphics dst, IlvTransformer t)
draw
in class IlvLinkImage
dst
- The destination Graphics.t
- The transformation used to draw the object.IlvGraphic.callDraw(Graphics,IlvTransformer)
,
IlvGraphic.boundingBox(IlvTransformer)
,
IlvGraphic.zoomable()
,
IlvGraphic
public boolean contains(IlvPoint p, IlvPoint tp, IlvTransformer t)
contains
in class IlvLinkImage
p
- The point to be tested.tp
- The point p transformed by the transformer t.t
- The transformation that was applied to the object when it
was drawn.true
if the point lies inside this graphic object.IlvGraphic
public IlvRect boundingBox(IlvTransformer t)
boundingBox
in interface IlvPolyPointsInterface
boundingBox
in class IlvLinkImage
t
- The transformer used to draw the object.IlvGraphic.draw(java.awt.Graphics, ilog.views.IlvTransformer)
,
IlvGraphic.zoomable()
,
IlvGraphic
© Copyright Rogue Wave Software, Inc. 1997, 2018. All Rights Reserved.