blob: a38defc85cafb99b26dcc7937631d09343d67bf5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 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 Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.views.navigator;
import org.eclipse.ui.help.WorkbenchHelp;
/**
* Implementation of the view sorting actions.
* @since 2.0
*/
public class SortViewAction extends ResourceNavigatorAction {
private int sortCriteria;
/**
* Creates the action.
*
* @param navigator the resource navigator
* @param sortByType <code>true</code> for sort by type, <code>false</code> for sort by name
*/
public SortViewAction(IResourceNavigator navigator, boolean sortByType) {
super(navigator, sortByType ? ResourceNavigatorMessages.getString("SortView.byType") : ResourceNavigatorMessages.getString("SortView.byName")); //$NON-NLS-2$ //$NON-NLS-1$
if (sortByType) {
setToolTipText(ResourceNavigatorMessages.getString("SortView.toolTipByType")); //$NON-NLS-1$
} else {
setToolTipText(ResourceNavigatorMessages.getString("SortView.toolTipByName")); //$NON-NLS-1$
}
setEnabled(true);
sortCriteria = sortByType ? ResourceSorter.TYPE : ResourceSorter.NAME;
WorkbenchHelp.setHelp(this, INavigatorHelpContextIds.SORT_VIEW_ACTION);
}
public void run() {
IResourceNavigator navigator = getNavigator();
ResourceSorter sorter = navigator.getSorter();
if (sorter == null)
navigator.setSorter(new ResourceSorter(sortCriteria));
else {
sorter.setCriteria(sortCriteria);
navigator.setSorter(sorter);
}
}
}