Package org.eclipse.gef.handles

Examples of org.eclipse.gef.handles.RelativeHandleLocator


  public ResizeHandle(GraphicalEditPart owner,
    int direction,
    boolean isResizable)
  {
    setOwner(owner);
    setLocator(new RelativeHandleLocator(owner.getFigure(), direction));
    setCursor(Cursors.getDirectionalCursor(direction,
      owner.getFigure().isMirrored()));
    cursorDirection = direction;
    this.isResizable = isResizable;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.gef.handles.RelativeHandleLocator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.