Package org.eclipse.egit.core.op

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


        UIText.StashApplyCommand_jobTitle, commit.name())) {

      @Override
      public IStatus runInWorkspace(IProgressMonitor monitor) {
        try {
          op.execute(monitor);
        } catch (CoreException e) {
          Activator.logError(MessageFormat.format(
              UIText.StashDropCommand_dropFailed, "stash@{" //$NON-NLS-1$
                  + stashIndex + "}"), e); //$NON-NLS-1$
        }
View Full Code Here


          final String stashName = node.getObject().getName();
          final StashDropOperation op = new StashDropOperation(repo,
              node.getIndex());
          monitor.subTask(stashName);
          try {
            op.execute(monitor);
          } catch (CoreException e) {
            Activator.logError(MessageFormat.format(
                UIText.StashDropCommand_dropFailed,
                node.getObject().name()), e);
          }
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.