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 java.awt.Color
getColor()
java.lang.String
getColorCode()
java.util.List<java.lang.Integer>
getEndInclination()
returns a Point.java.lang.String
getMiddleLabel()
java.lang.String
getShape()
returns one of LINE, LINEAR_PATH, CUBIC_CURVE, EDGE_LIKE.Node
getSource()
The node without the arrow.java.lang.String
getSourceLabel()
java.util.List<java.lang.Integer>
getStartInclination()
returns a Point.Node
getTarget()
The node with the arrow.java.lang.String
getTargetLabel()
boolean
hasEndArrow()
boolean
hasStartArrow()
boolean
simulatesEdge()
-
-
-
Method Detail
-
getShape
java.lang.String getShape()
returns one of LINE, LINEAR_PATH, CUBIC_CURVE, EDGE_LIKE.- Since:
- 1.3
-
getColor
java.awt.Color getColor()
-
getColorCode
java.lang.String getColorCode()
-
hasEndArrow
boolean hasEndArrow()
- Since:
- 1.2
-
getMiddleLabel
java.lang.String getMiddleLabel()
-
getSource
Node getSource()
The node without the arrow. On connectors with arrows at both ends one of the ends.
-
getSourceLabel
java.lang.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
java.lang.String getTargetLabel()
-
simulatesEdge
boolean simulatesEdge()
-
getStartInclination
java.util.List<java.lang.Integer> getStartInclination()
returns a Point.- Since:
- 1.3.3
-
getEndInclination
java.util.List<java.lang.Integer> getEndInclination()
returns a Point.- Since:
- 1.3.3
-
-