de.tub.tfs.henshin.tggeditor.commands.ResizableMessageDialog.java Source code

Java tutorial

Introduction

Here is the source code for de.tub.tfs.henshin.tggeditor.commands.ResizableMessageDialog.java

Source

/*******************************************************************************
 * Copyright (c) 2010-2015 Henshin developers. 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:
 *     TU Berlin, University of Luxembourg, SES S.A.
 *******************************************************************************/
package de.tub.tfs.henshin.tggeditor.commands;

import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;

public class ResizableMessageDialog extends MessageDialog {

    public ResizableMessageDialog(Shell parentShell, String dialogTitle, Image dialogTitleImage,
            String dialogMessage, int dialogImageType, String[] dialogButtonLabels, int defaultIndex) {
        super(parentShell, dialogTitle, dialogTitleImage, dialogMessage, dialogImageType, dialogButtonLabels,
                defaultIndex);
    }

    public ResizableMessageDialog(String title, String errorString) {
        super(Display.getDefault().getActiveShell(), title, null, errorString, MessageDialog.WARNING,
                new String[] { "OK" }, 0);
    }

    @Override
    protected boolean isResizable() {
        return true;
    }

}