Example usage for org.eclipse.jface.dialogs IMessageProvider INFORMATION

List of usage examples for org.eclipse.jface.dialogs IMessageProvider INFORMATION

Introduction

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

Prototype

int INFORMATION

To view the source code for org.eclipse.jface.dialogs IMessageProvider INFORMATION.

Click Source Link

Document

Constant for an info message (value 1).

Usage

From source file:org.apertium.api.translate.actions.TranslateConfigurationDialog.java

License:Open Source License

@Override
public void create() {
    super.create();
    // Set the title
    setTitle("Machine Translation Configuration");
    // Set the message
    setMessage("Choose the MT service to use and your own language", IMessageProvider.INFORMATION);

}

From source file:org.archicontribs.modelrepository.dialogs.CloneInputDialog.java

License:Open Source License

@Override
protected Control createDialogArea(Composite parent) {
    setMessage(Messages.CloneInputDialog_1, IMessageProvider.INFORMATION);
    setTitleImage(IArchiImages.ImageFactory.getImage(IArchiImages.ECLIPSE_IMAGE_NEW_WIZARD));

    Composite area = (Composite) super.createDialogArea(parent);
    Composite container = new Composite(area, SWT.NONE);
    container.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
    GridLayout layout = new GridLayout(2, false);
    container.setLayout(layout);/*from w  w w. j a  va  2  s .c o m*/

    createURL(container);
    createUsername(container);
    createPassword(container);

    return area;
}

From source file:org.archicontribs.modelrepository.dialogs.UserNamePasswordDialog.java

License:Open Source License

@Override
protected Control createDialogArea(Composite parent) {
    setMessage(Messages.UserNamePasswordDialog_1, IMessageProvider.INFORMATION);
    setTitleImage(IArchiImages.ImageFactory.getImage(IArchiImages.ECLIPSE_IMAGE_PROPERTIES_VIEW_ICON));

    Composite area = (Composite) super.createDialogArea(parent);
    Composite container = new Composite(area, SWT.NONE);
    container.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
    GridLayout layout = new GridLayout(2, false);
    container.setLayout(layout);/*www . j  a  va 2s  .  com*/

    createUsername(container);
    createPassword(container);

    return area;
}

From source file:org.bbaw.pdr.ae.config.editor.internal.CreateConfigDialog.java

License:Open Source License

/**
 *
 * @see org.eclipse.jface.dialogs.Dialog#create()
 *//*from w  ww . ja  v  a 2 s . c  om*/
@Override
public final void create() {
    super.create();

    // Set the title
    setTitle(NLMessages.getString("Config_new_classification_title")); //$NON-NLS-1$
    // Set the message
    setMessage(NLMessages.getString("Config_new_classification_message"), IMessageProvider.INFORMATION); //$NON-NLS-1$
}

From source file:org.bbaw.pdr.ae.errorreport.view.MailSettingsDialog.java

License:Open Source License

@Override
public final void create() {
    super.create();

    // Set the title
    setTitle(Messages.getString("ErrorDialog_mail_dialog_title"));
    // Set the message
    setMessage(Messages.getString("ErrorDialog_mail_dialog_message"), IMessageProvider.INFORMATION);

}

From source file:org.bbaw.pdr.ae.errorreport.view.ReportErrorDialog.java

License:Open Source License

@Override
protected final Control createContents(final Composite parent) {
    Control contents = super.createContents(parent);
    // Set the title
    setTitle(Messages.getString("ErrorDialog_error_dialog_title"));
    // Set the message
    setMessage(Messages.getString("ErrorDialog_error_dialog_message"), IMessageProvider.INFORMATION);
    return contents;
}

From source file:org.bbaw.pdr.ae.rap2.internal.LoginDialogRAP.java

License:Open Source License

@Override
public final void create() {
    super.create();

    // Set the title
    setTitle("Login"); //$NON-NLS-1$
    // Set the message
    setMessage("Please login", IMessageProvider.INFORMATION); //$NON-NLS-1$

}

From source file:org.bbaw.pdr.ae.repositoryconnection.view.RepositoryLogin.java

License:Open Source License

@Override
public final void create() {
    super.create();

    // get instance scope preference store for "org.bbaw.pdr.ae.common"
    prefs = CommonActivator.getDefault().getPreferenceStore();
    // Set the title
    setTitle(NLMessages.getString("Dialog_repository_login_title"));
    // Set the message
    setMessage(NLMessages.getString("Dialog_repository_login_message"), IMessageProvider.INFORMATION);

}

From source file:org.bbaw.pdr.ae.view.control.dialogs.CharMapDialog.java

License:Open Source License

@Override
public final void create() {
    super.create();

    // Set the title
    setTitle("Char map"); //$NON-NLS-1$
    // Set the message
    setMessage("select char", IMessageProvider.INFORMATION); //$NON-NLS-1$

}

From source file:org.bbaw.pdr.ae.view.control.dialogs.SelectObjectDialog.java

License:Open Source License

@Override
public final void create() {
    super.create();
    // Set the title
    setTitle(NLMessages.getString("ObjectDialog_title")); //$NON-NLS-1$
    // Set the message
    setMessage(NLMessages.getString("Dialog_firstMessage"), IMessageProvider.INFORMATION); //$NON-NLS-1$

}