org.eclipse.jface.dialogs.IMessageProvider Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2000, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jface.dialogs;
import java.io.Serializable;
/**
* Minimal interface to a message provider. Used for dialog pages which can
* provide a message with an icon.
*
* @since 1.0
*/
public interface IMessageProvider extends Serializable {
/**
* Constant for a regular message (value 0).
*
* Typically this indicates that the message should be shown without an
* icon.
*
*/
public final static int NONE = 0;
/**
* Constant for an info message (value 1).
*/
public final static int INFORMATION = 1;
/**
* Constant for a warning message (value 2).
*/
public final static int WARNING = 2;
/**
* Constant for an error message (value 3).
*/
public final static int ERROR = 3;
/**
* Returns the current message for this message provider.
*
* A message provides instruction or information to the user.
*
*
* @return the message, or null
if none
*/
public String getMessage();
/**
* Returns a value indicating if the message is a an information message, a
* warning message, or an error message.
*
* Returns one of NONE
,INFORMATION
,
* WARNING
, or ERROR
.
*
*
* @return the message type
*/
public int getMessageType();
}