blob: c78ff7feee20373bdf93b8e717467635faf0fbe9 [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.model;
import org.eclipse.jface.viewers.*;
import java.text.Collator;
/**
* A viewer sorter that sorts elements with registered workbench adapters by their text property.
* Note that capitalization differences are not considered by this
* sorter, so a > B > c
*
* @see IWorkbenchAdapter
*/
public class WorkbenchViewerSorter extends ViewerSorter {
/**
* Creates a workbench viewer sorter using the default collator.
*/
public WorkbenchViewerSorter() {
super();
}
/**
* Creates a workbench viewer sorter using the given collator.
*
* @param collator the collator to use to sort strings
*/
public WorkbenchViewerSorter(Collator collator) {
super(collator);
}
/* (non-Javadoc)
* Method declared on ViewerSorter.
*/
public boolean isSorterProperty(Object element,String propertyId) {
return propertyId.equals(IBasicPropertyConstants.P_TEXT);
}
}