blob: f5c0fa2efd54585056c7073826499adea5aba0ee [file] [log] [blame]
/************************************************************************
Copyright (c) 2002 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:
IBM - Initial implementation
************************************************************************/
package org.eclipse.ui.views.bookmarkexplorer;
import org.eclipse.ui.actions.SelectionProviderAction;
/**
* An abstract class for all bookmark view actions.
*/
abstract class BookmarkAction extends SelectionProviderAction {
private BookmarkNavigator view;
/**
* Creates a bookmark action.
*/
protected BookmarkAction(BookmarkNavigator view, String label) {
super(view.getViewer(), label);
this.view = view;
}
/**
* Returns the bookmarks view.
*/
public BookmarkNavigator getView() {
return view;
}
}