blob: e6f74737fae68356551fd939cd639b16c3d122d0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* Sian January - initial implementation
*******************************************************************************/
package org.eclipse.ajdt.internal.buildconfig.actions;
import org.eclipse.core.resources.IFile;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.IWorkbenchWindowActionDelegate;
/**
* This action is triggered from a popup menu on a build configuration
* file. It applies the saved exclusion filters to the project.
*/
public class ApplyBCAction implements IWorkbenchWindowActionDelegate {
private IFile currentlySelectedFile = null;
/**
* Executed when "Apply Build Configuration" in the context menu is clicked
*/
public void run(IAction action) {
if (currentlySelectedFile != null) {
BuildConfigurationUtils.applyBuildConfiguration(currentlySelectedFile);
}
}
/**
* Selection has changed - if we've selected a build file then remember it
* as the new project build config.
*/
public void selectionChanged(IAction action, ISelection selection) {
if (selection instanceof IStructuredSelection) {
IStructuredSelection structuredSelection = (IStructuredSelection) selection;
Object first = structuredSelection.getFirstElement();
if (first instanceof IFile) {
currentlySelectedFile = (IFile) first;
}
}
}
/**
* From IWorkbenchWindowActionDelegate
*/
public void dispose() {}
/**
* From IWorkbenchWindowActionDelegate
*/
public void init(IWorkbenchWindow window) {
}
}