Zest
1.5.0.201305060205

org.eclipse.zest.core.widgets
Class GraphConnection

java.lang.Object
  extended by org.eclipse.swt.widgets.Widget
      extended by org.eclipse.swt.widgets.Item
          extended by org.eclipse.zest.core.widgets.GraphItem
              extended by org.eclipse.zest.core.widgets.GraphConnection

public class GraphConnection
extends GraphItem


Field Summary
 
Fields inherited from class org.eclipse.zest.core.widgets.GraphItem
CONNECTION, CONTAINER, GRAPH, NODE
 
Constructor Summary
GraphConnection(Graph graphModel, int style, GraphNode source, GraphNode destination)
           
 
Method Summary
 void changeLineColor(Color color)
          Sets the connection color.
 void dispose()
           
 Connection getConnectionFigure()
           
 int getConnectionStyle()
          Returns the style of this connection.
 GraphNode getDestination()
          Gets the target node for this relationship
 java.lang.Object getExternalConnection()
          Gets the external connection object.
 Font getFont()
          Gets the font for the label on this connection
 Graph getGraphModel()
          Gets the graph model that this connection is in
 Color getHighlightColor()
           
 int getItemType()
          Gets the graph item type.
 LayoutRelationship getLayoutRelationship()
          Gets a proxy to this connection that can be used with the Zest layout engine
 Color getLineColor()
          Returns the color of this connection.
 int getLineStyle()
          Returns the connection line style.
 int getLineWidth()
          Returns the connection line width.
 GraphNode getSource()
          Gets the source node for this relationship
 IFigure getTooltip()
          Gets the current tooltip for this node.
 double getWeightInLayout()
          Gets the weight of this connection.
 void highlight()
          Highlights this node.
 boolean isDisposed()
           
 boolean isHighlighted()
          Returns true if this connection is highlighted, false otherwise
 boolean isVisible()
          Get the visibility of this item.
 void setConnectionStyle(int style)
          Returns the style of this connection.
 void setCurveDepth(int depth)
          Sets the curve depth of the arc.
 void setFont(Font f)
          Sets the font for the label on this connection.
 void setHighlightColor(Color color)
          Sets the highlight color.
 void setLineColor(Color color)
          Perminently sets the color of this line to the given color.
 void setLineStyle(int lineStyle)
          Sets the connection line style.
 void setLineWidth(int lineWidth)
          Sets the connection line width.
 void setText(java.lang.String string)
           
 void setTooltip(IFigure tooltip)
          Sets the tooltip on this node.
 void setVisible(boolean visible)
          Set the visibility of this item.
 void setWeight(double weight)
          Sets the weight for this connection.
 java.lang.String toString()
          Returns a string like 'source -> destination'
 void unhighlight()
          Unhighlights this node.
 
Methods inherited from class org.eclipse.zest.core.widgets.GraphItem
checkStyle
 
Methods inherited from class org.eclipse.swt.widgets.Item
checkSubclass, getImage, getText, setImage
 
Methods inherited from class org.eclipse.swt.widgets.Widget
addDisposeListener, addListener, checkWidget, getData, getData, getDisplay, getListeners, getStyle, isListening, notifyListeners, removeDisposeListener, removeListener, removeListener, reskin, setData, setData
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

GraphConnection

public GraphConnection(Graph graphModel,
                       int style,
                       GraphNode source,
                       GraphNode destination)
Method Detail

dispose

public void dispose()
Overrides:
dispose in class GraphItem

isDisposed

public boolean isDisposed()
Overrides:
isDisposed in class Widget

getConnectionFigure

public Connection getConnectionFigure()

getLayoutRelationship

public LayoutRelationship getLayoutRelationship()
Gets a proxy to this connection that can be used with the Zest layout engine

Returns:

getExternalConnection

public java.lang.Object getExternalConnection()
Gets the external connection object.

Returns:
Object

toString

public java.lang.String toString()
Returns a string like 'source -> destination'

Overrides:
toString in class Widget
Returns:
String

getConnectionStyle

public int getConnectionStyle()
Returns the style of this connection. Valid styles are those that begin with CONNECTION in ZestStyles.

Returns:
the style of this connection.
See Also:
#ZestStyles

setConnectionStyle

public void setConnectionStyle(int style)
Returns the style of this connection. Valid styles are those that begin with CONNECTION in ZestStyles.

See Also:
#ZestStyles

getWeightInLayout

public double getWeightInLayout()
Gets the weight of this connection. The weight must be in {-1, [0-1]}. A weight of -1 means that there is no force/tension between the nodes. A weight of 0 results in the maximum spring length being used (farthest apart). A weight of 1 results in the minimum spring length being used (closest together).

Returns:
the weight: {-1, [0 - 1]}.
See Also:
org.eclipse.mylar.zest.layouts.LayoutRelationship#getWeightInLayout()

getFont

public Font getFont()
Gets the font for the label on this connection

Returns:

setFont

public void setFont(Font f)
Sets the font for the label on this connection.


setWeight

public void setWeight(double weight)
Sets the weight for this connection. The weight must be in {-1, [0-1]}. A weight of -1 means that there is no force/tension between the nodes. A weight of 0 results in the maximum spring length being used (farthest apart). A weight of 1 results in the minimum spring length being used (closest together).


getLineColor

public Color getLineColor()
Returns the color of this connection.

Returns:
Color

setHighlightColor

public void setHighlightColor(Color color)
Sets the highlight color.

Parameters:
color - the color to use for highlighting.

getHighlightColor

public Color getHighlightColor()
Returns:
the highlight color

setLineColor

public void setLineColor(Color color)
Perminently sets the color of this line to the given color. This will become the color of the line when it is not highlighted. If you would like to temporarily change the color of the line, use changeLineColor.

Parameters:
color - the color to be set.
See Also:
changeLineColor(Color color)

changeLineColor

public void changeLineColor(Color color)
Sets the connection color.

Parameters:
color -

setTooltip

public void setTooltip(IFigure tooltip)
Sets the tooltip on this node. This tooltip will display if the mouse hovers over the node. Setting the tooltip has no effect if a custom figure has been set.


getTooltip

public IFigure getTooltip()
Gets the current tooltip for this node. The tooltip returned is meaningless if a custom figure has been set.


getLineWidth

public int getLineWidth()
Returns the connection line width.

Returns:
int

setLineWidth

public void setLineWidth(int lineWidth)
Sets the connection line width.

Parameters:
lineWidth -

getLineStyle

public int getLineStyle()
Returns the connection line style.

Returns:
int

setLineStyle

public void setLineStyle(int lineStyle)
Sets the connection line style.

Parameters:
lineStyle -

getSource

public GraphNode getSource()
Gets the source node for this relationship

Returns:
GraphModelNode

getDestination

public GraphNode getDestination()
Gets the target node for this relationship

Returns:
GraphModelNode

highlight

public void highlight()
Highlights this node. Uses the default highlight color.

Specified by:
highlight in class GraphItem

unhighlight

public void unhighlight()
Unhighlights this node. Uses the default color.

Specified by:
unhighlight in class GraphItem

isHighlighted

public boolean isHighlighted()
Returns true if this connection is highlighted, false otherwise

Returns:

getGraphModel

public Graph getGraphModel()
Gets the graph model that this connection is in

Specified by:
getGraphModel in class GraphItem
Returns:
The graph model that this connection is contained in

setCurveDepth

public void setCurveDepth(int depth)
Sets the curve depth of the arc. The curve depth is defined as the maximum distance from any point on the chord (i.e. a vector normal to the chord with magnitude d). If 0 is set, a Polyline Connection will be used, otherwise a PolylineArcConnectoin will be used. Negative depths are also supported.

Parameters:
depth - The depth of the curve

getItemType

public int getItemType()
Description copied from class: GraphItem
Gets the graph item type. The item type is one of: GRAPH, NODE or CONNECTION

Specified by:
getItemType in class GraphItem
Returns:

setVisible

public void setVisible(boolean visible)
Description copied from class: GraphItem
Set the visibility of this item.

Specified by:
setVisible in class GraphItem
Parameters:
visible - whether or not this item is visible.

isVisible

public boolean isVisible()
Description copied from class: GraphItem
Get the visibility of this item.

Specified by:
isVisible in class GraphItem
Returns:
the visibility of this item.

setText

public void setText(java.lang.String string)
Overrides:
setText in class Item

Zest
1.5.0.201305060205

Copyright (c) IBM Corp. and others 2000, 2011. All Rights Reserved.