Uses of Interface
org.jhotdraw.framework.Connector

Packages that use Connector
org.jhotdraw.contrib   
org.jhotdraw.figures   
org.jhotdraw.framework   
org.jhotdraw.standard   
 

Uses of Connector in org.jhotdraw.contrib
 

Classes in org.jhotdraw.contrib that implement Connector
 class ChopDiamondConnector
          A ChopDiamondConnector locates connection points by choping the connection between the centers of the two figures at the edge of a diamond figure.
 class ChopPolygonConnector
          A ChopPolygonConnector locates a connection point by chopping the connection at the polygon boundary.
 

Methods in org.jhotdraw.contrib that return Connector
 Connector PolygonFigure.connectorAt(int x, int y)
           
 Connector DiamondFigure.connectorAt(int x, int y)
           
 

Uses of Connector in org.jhotdraw.figures
 

Classes in org.jhotdraw.figures that implement Connector
 class ChopEllipseConnector
          A ChopEllipseConnector locates a connection point by chopping the connection at the ellipse defined by the figure's display box.
 class NullConnector
           
 class PolyLineConnector
          PolyLineConnector finds connection points on a PolyLineFigure.
 class ShortestDistanceConnector
          A ShortestDistance locates connection points by finding the shortest distance between the start and end of the connection.
 

Methods in org.jhotdraw.figures that return Connector
 Connector RoundRectangleFigure.connectorAt(int x, int y)
           
 Connector PolyLineFigure.connectorAt(int x, int y)
           
 Connector EllipseFigure.connectorAt(int x, int y)
           
 Connector LineConnection.getEndConnector()
          Gets the end figure of the connection.
 Connector LineConnection.getStartConnector()
          Gets the start figure of the connection.
 

Methods in org.jhotdraw.figures with parameters of type Connector
 void LineConnection.connectEnd(Connector newEndConnector)
          Sets the end figure of the connection.
 void LineConnection.connectStart(Connector newStartConnector)
          Sets the start figure of the connection.
 

Uses of Connector in org.jhotdraw.framework
 

Methods in org.jhotdraw.framework that return Connector
 Connector Figure.connectorAt(int x, int y)
          Gets a connector for this figure at the given location.
 Connector ConnectionFigure.getEndConnector()
          Gets the end Connector.
 Connector ConnectionFigure.getStartConnector()
          Gets the start Connector
 

Methods in org.jhotdraw.framework with parameters of type Connector
 void ConnectionFigure.connectEnd(Connector end)
          Sets the end Connector of the connection.
 void ConnectionFigure.connectStart(Connector start)
          Sets the start Connector of the connection.
 

Uses of Connector in org.jhotdraw.standard
 

Classes in org.jhotdraw.standard that implement Connector
 class AbstractConnector
          AbstractConnector provides default implementation for the Connector interface.
 class ChopBoxConnector
          A ChopBoxConnector locates connection points by choping the connection between the centers of the two figures at the display box.
 class LocatorConnector
          A LocatorConnector locates connection points with the help of a Locator.
 

Methods in org.jhotdraw.standard that return Connector
 Connector DecoratorFigure.connectorAt(int x, int y)
          Returns the Connector for the given location.
 Connector AbstractFigure.connectorAt(int x, int y)
          Returns the Figures connector for the specified location.
 Connector ChangeConnectionHandle.UndoActivity.getOldConnector()
           
 

Methods in org.jhotdraw.standard with parameters of type Connector
 void ChangeConnectionHandle.UndoActivity.setOldConnector(Connector newOldConnector)