Package org.eclipse.ui.actions

Examples of org.eclipse.ui.actions.MoveResourceAction


        || (list.get(0) instanceof IAdaptable && ((IAdaptable) list
            .get(0)).getAdapter(IResource.class) instanceof IProject)) {
      action = new PHPMoveProjectAction(fShell);
      action.selectionChanged(selection);
    } else if (selectedResources != null) {
      action = new MoveResourceAction(fShell);
      if (list.size() == 1) {
        Object object = list.get(0);
        if (object instanceof ElementImplForPhp
            && ((ElementImplForPhp) object).getModelElement() != null) {
          IResource resource = ((ElementImplForPhp) object)
View Full Code Here

TOP

Related Classes of org.eclipse.ui.actions.MoveResourceAction

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.