Package org.eclipse.egit.ui.internal.actions

Examples of org.eclipse.egit.ui.internal.actions.ResetActionHandler


    }
    final String targetBranch;
    if (!(node.getObject() instanceof Ref))
      // Use same dialog as for project when a repository is selected
      // allowing reset to any commit
      return new ResetActionHandler().execute(event);

    // If a ref is selected in the repository view, only reset to
    // that ref will be possible.
    targetBranch = ((Ref) node.getObject()).getName();
View Full Code Here

TOP

Related Classes of org.eclipse.egit.ui.internal.actions.ResetActionHandler

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.