com.cloudbees.eclipse.run.ui.launchconfiguration.CustomAppIdDialog.java Source code

Java tutorial

Introduction

Here is the source code for com.cloudbees.eclipse.run.ui.launchconfiguration.CustomAppIdDialog.java

Source

/*******************************************************************************
 * Copyright (c) 2013 Cloud Bees, Inc.
 * All rights reserved. 
 * This program is 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:
 *    Cloud Bees, Inc. - initial API and implementation 
 *******************************************************************************/
package com.cloudbees.eclipse.run.ui.launchconfiguration;

import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;

public class CustomAppIdDialog extends Dialog {
    private String projectName;
    private Text textAppId;
    private String appId = null;

    /**
     * Create the dialog.
     * @param parentShell
     */
    public CustomAppIdDialog(final Shell parentShell, final String projectName) {
        super(parentShell);
        this.projectName = projectName;
    }

    /**
     * Create contents of the dialog.
     * @param parent
     */
    @Override
    protected Control createDialogArea(final Composite parent) {
        Composite container = (Composite) super.createDialogArea(parent);
        GridLayout gridLayout = (GridLayout) container.getLayout();
        gridLayout.numColumns = 2;
        new Label(container, SWT.NONE);
        new Label(container, SWT.NONE);
        new Label(container, SWT.NONE);

        Label lblAppId = new Label(container, SWT.NONE);
        lblAppId.setText("Specify custom App ID for war deploy:");
        new Label(container, SWT.NONE);

        this.textAppId = new Text(container, SWT.BORDER);
        this.textAppId.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1));
        this.textAppId.setText(this.projectName);

        return container;
    }

    @Override
    protected void configureShell(final Shell newShell) {
        newShell.setText("Custom App ID");
        super.configureShell(newShell);
    }

    /**
     * Return the initial size of the dialog.
     */
    @Override
    protected Point getInitialSize() {
        return new Point(450, 208);
    }

    @Override
    protected void okPressed() {
        this.appId = this.textAppId.getText();
        super.okPressed();
    }

    public String getAppId() {
        return this.appId;
    }
}