Package org.eclipse.egit.core.op

Examples of org.eclipse.egit.core.op.DeletePathsOperation


        UIText.DeleteResourcesOperationUI_confirmActionTitle,
        UIText.DeleteResourcesOperationUI_confirmActionMessage);
    if (!performAction)
      return;

    DeletePathsOperation operation = new DeletePathsOperation(paths);

    try {
      operation.execute(null);
    } catch (CoreException e) {
      Activator.handleError(UIText.DeleteResourcesOperationUI_deleteFailed, e, true);
    }
  }
View Full Code Here


    assertNotNull(cacheEntry);
    Job.getJobManager().join(JobFamilies.INDEX_DIFF_CACHE_UPDATE, null);
  }

  private void deletePaths(Collection<IPath> paths) throws CoreException {
    DeletePathsOperation operation = new DeletePathsOperation(paths);
    operation.execute(null);
  }
View Full Code Here

TOP

Related Classes of org.eclipse.egit.core.op.DeletePathsOperation

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.