Uses of Interface
org.pathvisio.libgpml.model.connector.ConnectorShape
Package | Description |
---|---|
org.pathvisio.libgpml.model |
Classes representing the pathway "model".
|
org.pathvisio.libgpml.model.connector |
Line connectors classes
|
-
Uses of ConnectorShape in org.pathvisio.libgpml.model
Fields in org.pathvisio.libgpml.model declared as ConnectorShape Modifier and Type Field Description (package private) ConnectorShape
LineElement. shape
Methods in org.pathvisio.libgpml.model that return ConnectorShape Modifier and Type Method Description ConnectorShape
LineElement. getConnectorShape()
The Connector Shape for this line - the connector shape can calculate a Shape based on the connector type (straight, elbow or curved) and possibly way points -
Uses of ConnectorShape in org.pathvisio.libgpml.model.connector
Classes in org.pathvisio.libgpml.model.connector that implement ConnectorShape Modifier and Type Class Description class
AbstractConnector
Abstract connector shape implementation that deals with cached shapes, segments and waypoints.class
CurvedConnectorShape
Implements a curved connector that draws curved lines between the segments.class
ElbowConnectorShape
ConnectorShape implementation for the elbow connector.class
FreeConnectorShape
Implements a connector that draws straight lines between multiple waypoints.class
SegmentedConnector
Base class for segmented connectors.class
StraightConnectorShape
Implements a straight connector Shape, i.e.Fields in org.pathvisio.libgpml.model.connector with type parameters of type ConnectorShape Modifier and Type Field Description private static java.util.Map<java.lang.String,java.lang.Class<? extends ConnectorShape>>
ConnectorShapeFactory. shapes
Methods in org.pathvisio.libgpml.model.connector that return ConnectorShape Modifier and Type Method Description static ConnectorShape
ConnectorShapeFactory. createConnectorShape(java.lang.String name)
Creates an instance of a the implementor of ConnectorShape identified by the given name.Methods in org.pathvisio.libgpml.model.connector that return types with arguments of type ConnectorShape Modifier and Type Method Description static java.lang.Class<? extends ConnectorShape>
ConnectorShapeFactory. getImplementingClass(java.lang.String name)
Returns the class that implements ConnectorShape identified by the given nameMethod parameters in org.pathvisio.libgpml.model.connector with type arguments of type ConnectorShape Modifier and Type Method Description static void
ConnectorShapeFactory. registerShape(java.lang.String name, java.lang.Class<? extends ConnectorShape> shapeClass)