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 com.mentor.nucleus.bp.debug.ui.launch.VerifiableElementComposite.java

public class VerifiableElementComposite extends Composite implements Listener, IMessageProvider {

    // controls
    private ModelCheckedTreeViewer tableTreeViewer;

    private VerifiableElementInitializerDialog initializerEditor = null;

From source file com.mobilesorcery.sdk.ui.DefaultMessageProvider.java

/**
 * A default implementation of the <code>IMessageProvider</code> API.
 * @author Mattias Bybro
 *
 */
public class DefaultMessageProvider implements IMessageProvider {

From source file org.eclipse.gmt.modisco.jm2t.ui.wizard.IWizardHandle.java

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

From source file org.eclipse.php.internal.ui.wizards.IWizardHandle.java

/**
 * A wizard handle. [Copied from WST)
 */
public interface IWizardHandle extends IMessageProvider {
    /**
     * Updates the wizard error messages and buttons.

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

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

    /**

From source file org.eclipse.tcf.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.tcf.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.tcf.te.ui.jface.interfaces.IValidatable.java

/**
 * Interface to be implemented by validatable UI elements like
 * widgets, controls, sections or any other UI element with a
 * validatable state.
 */
public interface IValidatable extends IMessageProvider {

From source file org.eclipse.tm.internal.terminal.provisional.api.AbstractSettingsPage.java

/**
 * Abstract settings page providing a common implementation of the listener handling.
 */
public abstract class AbstractSettingsPage implements ISettingsPage, IMessageProvider {
    // A message associated with the control.
    private String message = null;

From source file org.eclipse.tm.te.ui.controls.BaseControl.java

/**
 * Base implementation of a common UI control.
 * <p>
 * The control can be embedded into any UI container like dialogs,
 * wizard pages or preference pages.
 */