Package org.eclipse.egit.ui.internal.operations

Examples of org.eclipse.egit.ui.internal.operations.DeletePathsOperationUI


      this.selection = selection;
    }

    @Override
    public void run() {
      DeletePathsOperationUI operation = new DeletePathsOperationUI(
          getSelectedPaths(selection), getSite());
      operation.run();
    }
View Full Code Here


  private class GlobalDeleteActionHandler extends Action {

    @Override
    public void run() {
      DeletePathsOperationUI operation = new DeletePathsOperationUI(
          getSelectedPaths(getSelection()), getSite());
      operation.run();
    }
View Full Code Here

  public Object execute(ExecutionEvent event) throws ExecutionException {
    Collection<IPath> paths = getSelectedFileAndFolderPaths(event);

    RepositoriesView view = getView(event);
    DeletePathsOperationUI operation = new DeletePathsOperationUI(paths, view.getSite());
    operation.run();

    view.refresh();
    return null;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.egit.ui.internal.operations.DeletePathsOperationUI

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.