Change-Id: I0aa3ec5b80140ae79fffd3edd230b1d8e8f68e43 Former-commit-id:80c0d6b69e
[formerlyeb5aa48960
] [formerlyc627c6af24
[formerly 3fd7556be39d7381c3cdc92a3b72a6ff10c2ebed]] Former-commit-id:c627c6af24
Former-commit-id:be40b56d18
77 lines
2.4 KiB
Java
77 lines
2.4 KiB
Java
/**
|
|
* This software was developed and / or modified by Raytheon Company,
|
|
* pursuant to Contract DG133W-05-CQ-1067 with the US Government.
|
|
*
|
|
* U.S. EXPORT CONTROLLED TECHNICAL DATA
|
|
* This software product contains export-restricted data whose
|
|
* export/transfer/disclosure is restricted by U.S. law. Dissemination
|
|
* to non-U.S. persons whether in the United States or abroad requires
|
|
* an export license or other authorization.
|
|
*
|
|
* Contractor Name: Raytheon Company
|
|
* Contractor Address: 6825 Pine Street, Suite 340
|
|
* Mail Stop B8
|
|
* Omaha, NE 68106
|
|
* 402.291.0100
|
|
*
|
|
* See the AWIPS II Master Rights File ("Master Rights File.pdf") for
|
|
* further licensing information.
|
|
**/
|
|
package com.raytheon.viz.gfe.actions;
|
|
|
|
import org.eclipse.core.commands.AbstractHandler;
|
|
import org.eclipse.core.commands.ExecutionEvent;
|
|
import org.eclipse.core.commands.ExecutionException;
|
|
import org.eclipse.swt.widgets.Shell;
|
|
import org.eclipse.ui.PlatformUI;
|
|
|
|
import com.raytheon.viz.gfe.core.DataManager;
|
|
import com.raytheon.viz.gfe.dialogs.DefineRefSetDialog;
|
|
|
|
/**
|
|
* Action for launching editarea and query dialog (the ? mark in GFE).
|
|
*
|
|
* <pre>
|
|
* SOFTWARE HISTORY
|
|
* Date Ticket# Engineer Description
|
|
* ------------ ---------- ----------- --------------------------
|
|
* Mar 11, 2008 Eric Babin Initial Creation
|
|
* Oct 24, 2012 1287 rferrel Changes for non-blocking DefineRefSetDialog.
|
|
*
|
|
* </pre>
|
|
*
|
|
* @author ebabin
|
|
* @version 1.0
|
|
*/
|
|
|
|
public class ShowDefineRefSetDialog extends AbstractHandler {
|
|
private volatile DefineRefSetDialog dialog = null;
|
|
|
|
/*
|
|
* (non-Javadoc)
|
|
*
|
|
* @see
|
|
* org.eclipse.core.commands.AbstractHandler#execute(org.eclipse.core.commands
|
|
* .ExecutionEvent)
|
|
*/
|
|
@Override
|
|
public Object execute(ExecutionEvent arg0) throws ExecutionException {
|
|
Shell shell = PlatformUI.getWorkbench().getActiveWorkbenchWindow()
|
|
.getShell();
|
|
|
|
DataManager dm = DataManager.getCurrentInstance();
|
|
if (dm == null) {
|
|
return null;
|
|
}
|
|
|
|
if (dialog == null || dialog.getShell() == null || dialog.isDisposed()) {
|
|
dialog = new DefineRefSetDialog(shell, dm);
|
|
dialog.setBlockOnOpen(false);
|
|
dialog.open();
|
|
} else {
|
|
dialog.bringToTop();
|
|
}
|
|
return null;
|
|
}
|
|
|
|
}
|