Package org.eclipse.gef.requests

Examples of org.eclipse.gef.requests.LocationRequest


   * (non-Javadoc)
   *
   * @see org.eclipse.gef.EditPart#deactivate()
   */
  public void deactivate() {
    LocationRequest hoverRequest = new LocationRequest();
    hoverRequest.setType(RequestConstants.REQ_SELECTION_HOVER);
    this.eraseTargetFeedback(hoverRequest);
    super.deactivate();
  }
View Full Code Here


        EditPart targetEditPart = getTargetEditPart();
       
        if (isInState(STATE_INITIAL)
                && targetEditPart instanceof NodeEditPart)
        {
            LocationRequest request = new LocationRequest(org.eclipse.jst.pagedesigner.requests.PageDesignerRequestConstants.REQ_SELECTION_TRACKER);
            request.setLocation(getLocation());
            DragTracker selectionTracker = targetEditPart.getDragTracker(request);
            setDragTracker(selectionTracker);
        }
       
        return handled;
View Full Code Here

TOP

Related Classes of org.eclipse.gef.requests.LocationRequest

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.