Package org.freeplane.api
Interface ConnectorRO
-
- All Known Subinterfaces:
Connector
,Proxy.Connector
,Proxy.ConnectorRO
public interface ConnectorRO
Graphical connector between nodes:node.connectorsIn
/node.connectorsOut
- read-only.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Color
getColor()
String
getColorCode()
List<Integer>
getEndInclination()
returns a Point.String
getMiddleLabel()
String
getShape()
returns one of LINE, LINEAR_PATH, CUBIC_CURVE, EDGE_LIKE.Node
getSource()
The node without the arrow.String
getSourceLabel()
List<Integer>
getStartInclination()
returns a Point.Node
getTarget()
The node with the arrow.String
getTargetLabel()
boolean
hasEndArrow()
boolean
hasStartArrow()
boolean
simulatesEdge()
-
-
-
Method Detail
-
getShape
String getShape()
returns one of LINE, LINEAR_PATH, CUBIC_CURVE, EDGE_LIKE.- Since:
- 1.3
-
getColor
Color getColor()
-
getColorCode
String getColorCode()
-
hasEndArrow
boolean hasEndArrow()
- Since:
- 1.2
-
getMiddleLabel
String getMiddleLabel()
-
getSource
Node getSource()
The node without the arrow. On connectors with arrows at both ends one of the ends.
-
getSourceLabel
String getSourceLabel()
-
hasStartArrow
boolean hasStartArrow()
- Since:
- 1.2
-
getTarget
Node getTarget()
The node with the arrow. On connectors with arrows at both ends one of the ends.
-
getTargetLabel
String getTargetLabel()
-
simulatesEdge
boolean simulatesEdge()
-
-