blob: 6af2b33ab2e73abc7ffa5d70f7e82ddcf8538248 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2015 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.internal;
import java.text.Collator;
import java.util.Comparator;
import org.eclipse.ui.IWorkingSet;
/**
* Compares two working sets by name.
*/
public class WorkingSetComparator implements Comparator<IWorkingSet> {
private static ThreadLocal<WorkingSetComparator> INSTANCES = new ThreadLocal<>() {
@Override
protected synchronized WorkingSetComparator initialValue() {
return new WorkingSetComparator();
}
};
public static WorkingSetComparator getInstance() {
return INSTANCES.get();
}
private Collator fCollator = Collator.getInstance();
/**
* Implements Comparator.
*
* @see Comparator#compare(Object, Object)
*/
@Override
public int compare(IWorkingSet o1, IWorkingSet o2) {
String name1 = o1.getLabel();
String name2 = o2.getLabel();
int result = fCollator.compare(name1, name2);
if (result == 0) { // okay, same name - now try the unique id
name1 = o1.getName();
name2 = o2.getName();
result = name1.compareTo(name2);
}
return result;
}
}