Package org.eclipse.egit.ui

Examples of org.eclipse.egit.ui.ICommitMessageProvider


      IFile file = findFile(path);
      if (file != null)
        resources.add(file.getProject());
    }
    try {
      ICommitMessageProvider messageProvider = getCommitMessageProvider();
      if (messageProvider != null) {
        IResource[] resourcesArray = resources
            .toArray(new IResource[0]);
        calculatedCommitMessage = messageProvider
            .getMessage(resourcesArray);
      }
    } catch (CoreException coreException) {
      Activator.error(coreException.getLocalizedMessage(), coreException);
    }
View Full Code Here

TOP

Related Classes of org.eclipse.egit.ui.ICommitMessageProvider

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.