/* (non-Javadoc)
  * @see org.eclipse.vtp.desktop.editors.core.theme.ComponentFrame#mouseDown(org.eclipse.vtp.desktop.editors.core.commands.CommandListener, int, int, int)
  */
 public void mouseDown(CommandListener commandListener, int x, int y, int modifiers) {
   if (uiElement.getConnectorRecords().size() > 0
       && new Rectangle(lowerRight.x - 17, lowerRight.y - 17, 14, 14).contains(x, y)) {
     commandListener.executeCommand(new BeginConnector());
   } else if (getBounds().contains(x, y)) {
     commandListener.executeCommand(new StartMove());
   }
 }