blob: 5664f06be7153047c19f6477bf27434b3445243f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* 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:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.ote.ui.test.manager.util;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.jface.window.Window;
/**
* @author Roberto E. Escobar
*/
public class EnvVariableDialogHelper implements Runnable {
private int result;
private String selection;
public EnvVariableDialogHelper() {
}
public int getResult() {
return result;
}
public String getSelection() {
return selection;
}
@Override
public void run() {
EnvVariableDialog dlg =
new EnvVariableDialog(null, "Add Environment Variable", null, "Enter Name:", MessageDialog.NONE, new String[] {
"OK",
"Cancel"}, 0);
result = dlg.open();
if (result == Window.OK) {
if (dlg.isValid()) {
String info = dlg.getSelection();
if (info != null) {
selection = info;
} else {
selection = "";
}
}
}
}
}