Example usage for org.eclipse.jface.dialogs IMessageProvider interface-usage

List of usage examples for org.eclipse.jface.dialogs IMessageProvider interface-usage

Introduction

In this page you can find the example usage for org.eclipse.jface.dialogs IMessageProvider interface-usage.

Usage

From source file org.eclipse.tm.te.ui.controls.interfaces.IWizardConfigurationPanel.java

/**
 * Target explorer: Interface to deal with the replaceable wizard configuration panels.
 */
public interface IWizardConfigurationPanel extends IMessageProvider {

    /**

From source file org.eclipse.tm.te.ui.controls.validator.Validator.java

/**
 * Input validator and message provider.
 */
public abstract class Validator implements IMessageProvider, ICellEditorValidator {

    // message text, set in isValid(String)

From source file org.eclipse.tm.te.ui.jface.dialogs.CustomTitleAreaDialog.java

/**
 * Custom title area dialog implementation.
 */
public class CustomTitleAreaDialog extends TitleAreaDialog implements IMessageProvider {
    protected static final int comboHistoryLength = 10;
    private String contextHelpId = null;

From source file org.eclipse.tm.terminal.connector.serial.controls.SerialPortAddressDialog.java

/**
 * Serial line port or address dialog.
 */
public class SerialPortAddressDialog extends TitleAreaDialog implements IMessageProvider {
    private String contextHelpId = null;

From source file org.eclipse.tm.terminal.view.ui.controls.ConfigurationPanelControl.java

/**
 * Base control to deal with wizard or property page controls
 * which should share the same UI space.
 */
public class ConfigurationPanelControl implements IConfigurationPanelContainer, IMessageProvider {
    private final Map<String, IConfigurationPanel> configurationPanels = new Hashtable<String, IConfigurationPanel>();

From source file org.eclipse.tm.terminal.view.ui.interfaces.IConfigurationPanel.java

/**
 * Terminal launcher configuration panel.
 *
 * @noextend This interface is not intended to be extended by clients.
 * @noimplement This interface is not intended to be implemented by clients.
 * Clients should extend {@link AbstractConfigurationPanel} instead.

From source file org.eclipse.ui.forms.IMessage.java

/**
 * This interface encapsulates a single message that can be shown in a form.
 * Messages can be associated with controls, or be of a general nature.
 * 
 * @see IMessageManager
 * @since 3.3

From source file org.eclipse.wst.common.componentcore.ui.internal.taskwizard.IWizardHandle.java

/**
 * A wizard handle.
 * 
 * @since 1.0
 */
public interface IWizardHandle extends IMessageProvider {

From source file org.eclipse.wst.server.ui.wizard.IWizardHandle.java

/**
 * A wizard handle.
 * 
 * @since 1.0
 */
public interface IWizardHandle extends IMessageProvider {

From source file org.eclipse.wst.wsdl.ui.internal.contentgenerator.ui.BaseContentGeneratorOptionsPage.java

public abstract class BaseContentGeneratorOptionsPage
        implements ContentGeneratorOptionsPage, SelectionListener, IMessageProvider {
    protected Composite control;
    protected BaseGenerator generator;
    protected WizardPage wizardPage;
    protected IFile targetFile;