blob: ac9cbb4933572dfc21407d434df355f683297ccd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation 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:
* Hisashi MIYASHITA - initial API and implementation
*******************************************************************************/
package org.eclipse.actf.examples.aibrowser.actions;
import org.eclipse.actf.examples.aibrowser.preferences.ABrowserPreferencesUtil;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.IWorkbenchWindowActionDelegate;
public class OpenPreferencesActionDelegate implements IWorkbenchWindowActionDelegate {
//private IWorkbenchWindow window;
public void dispose() {
}
public void init(IWorkbenchWindow window) {
// this.window = window;
}
public void run(IAction action) {
ABrowserPreferencesUtil p = ABrowserPreferencesUtil.newInstance(null);
p.open();
}
public void selectionChanged(IAction action, ISelection selection) {
}
}