Package org.eclipse.egit.ui.internal.dialogs.CommitMessageComponent

Examples of org.eclipse.egit.ui.internal.dialogs.CommitMessageComponent.CommitStatus


      type = IMessageProvider.INFORMATION;
    } else if (!isCommitWithoutFilesAllowed()) {
      message = UIText.CommitDialog_MessageNoFilesSelected;
      type = IMessageProvider.INFORMATION;
    } else {
      CommitStatus status = commitMessageComponent.getStatus();
      message = status.getMessage();
      type = status.getMessageType();
    }

    setMessage(message, type);
    boolean commitEnabled = type == IMessageProvider.WARNING
        || type == IMessageProvider.NONE;
View Full Code Here

TOP

Related Classes of org.eclipse.egit.ui.internal.dialogs.CommitMessageComponent.CommitStatus

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.