blob: c367b7078cb719c48a0e686151f42024967fcf88 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 University of Illinois at Urbana-Champaign and others.
* 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:
* UIUC - Initial API and implementation
*******************************************************************************/
package org.eclipse.photran.internal.ui.actions;
import java.lang.reflect.InvocationTargetException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.photran.internal.core.analysis.binding.ScopingNode;
import org.eclipse.photran.internal.core.lexer.Token;
/**
* Implements the Find All Declarations in Scope action in the Refactor/(Debugging) menu.
*
* @author Jeff Overbey
*/
public class FindAllDeclarationsInScope extends FortranEditorASTActionDelegate
{
public void run(IProgressMonitor progressMonitor) throws InvocationTargetException, InterruptedException
{
try
{
progressMonitor.beginTask(Messages.FindAllDeclarationsInScope_WaitingForBackgroundWorkToComplete, IProgressMonitor.UNKNOWN);
Token token = findEnclosingToken(getAST(), getFortranEditor().getSelection());
if (token == null) throw new Exception(Messages.FindAllDeclarationsInScope_PleaseSelectAToken);
ScopingNode scope = token.getEnclosingScope();
if (scope == null) throw new Exception(Messages.FindAllDeclarationsInScope_NoEnclosingScope);
openSelectionDialog(scope.getAllDefinitions());
}
catch (Exception e)
{
String message = e.getMessage();
if (message == null) message = e.getClass().getName();
MessageDialog.openError(getFortranEditor().getShell(), Messages.FindAllDeclarationsInScope_ErrorTitle, message);
}
finally
{
progressMonitor.done();
}
}
}