Examples of VcsConfiguration


Examples of com.intellij.openapi.vcs.VcsConfiguration

  public void actionPerformed(AnActionEvent e) {
    CheckinProjectPanel panel = (CheckinProjectPanel)e.getDataContext().getData(CheckinProjectPanel.PANEL);
    if (panel != null) {
      final Project project = panel.getProject();
      final VcsConfiguration configuration = VcsConfiguration.getInstance(project);

      final ArrayList<String> recentMessages = configuration.getRecentMessages();
      Collections.reverse(recentMessages);

      if (!recentMessages.isEmpty()) {

        final ContentChooser<String> contentChooser = new ContentChooser<String>(project, VcsBundle.message("dialog.title.choose.commit.message.from.history"), false){
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.