Examples of IBranchNameProvider


Examples of org.eclipse.egit.ui.IBranchNameProvider

    return null;
  }

  private String getBranchNameSuggestionFromProvider() {
    final AtomicReference<String> ref = new AtomicReference<String>();
    final IBranchNameProvider branchNameProvider = getBranchNameProvider();
    if (branchNameProvider != null)
      SafeRunner.run(new SafeRunnable() {
        public void run() throws Exception {
          ref.set(branchNameProvider.getBranchNameSuggestion());
        }
      });
    return ref.get();
  }
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.