Package org.eclipse.egit.core.op

Examples of org.eclipse.egit.core.op.RemoveFromIndexOperation.execute()


    final RemoveFromIndexOperation removeOperation = new RemoveFromIndexOperation(Arrays.asList(sel));
    Job job = new Job(UIText.RemoveFromIndexAction_removingFiles) {
      @Override
      protected IStatus run(IProgressMonitor monitor) {
        try {
          removeOperation.execute(monitor);
        } catch (CoreException e) {
          return Activator.createErrorStatus(e.getStatus()
              .getMessage(), e);
        } finally {
          monitor.done();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.