blob: 3214998bb68c10500faf6916ab27164875cc7671 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2011 See4sys, itemis and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
*
* Contributors:
* See4sys - Initial API and implementation
* itemis - [358591] ResultObjectHandler and ResultMessageHandler used by M2xConfigurationWizards are difficult to customize and should be usable in BasicM2xActions too
*
* </copyright>
*/
package org.eclipse.sphinx.xtendxpand.ui.jobs;
/**
* This class contains the constants that indicate when message dialog should be displayed with M2x job result.
*/
public interface IResultMessageConstants {
/**
* The constant that indicates the message dialog should be displayed only if M2x job ends with errors or check done
* before failed. This is the default behavior. If M2x failed then Eclipse automatically opens a message dialog with
* error message. If check done before M2x ends with errors then we open explicitly a message dialog.
*/
int OPEN_DIALOG_ON_FAILED = 0;
/**
* The constant that indicates the message dialog should be displayed only if M2x job failed or completed.
*/
int OPEN_DIALOG_ON_FAILED_OR_COMPLETION = 1;
/**
* The constant that indicate the message dialog should be displayed only if M2x job failed or completed or
* cancelled.
*/
int OPEN_DIALOG_ON_FAILED_OR_COMPLETION_OR_CANCELLATION = 2;
}