Skip to main content
summaryrefslogtreecommitdiffstats
blob: 7954013aa9e2a24cae4c37798335cc35f14c6a4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*******************************************************************************
 * Copyright (c) 2000, 2011 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:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.help.internal.workingset;

import com.ibm.icu.text.Collator;
import java.util.Comparator;

/**
 * Compares two working sets by name.
 */
public class WorkingSetComparator implements Comparator<WorkingSet> {
	private Collator fCollator = Collator.getInstance();

	/**
	 * Implements Comparator.
	 *
	 * @see Comparator#compare(Object, Object)
	 */
	@Override
	public int compare(WorkingSet o1,WorkingSet o2) {
		String name1 = null;
		String name2 = null;

		if (o1 != null)
			name1 = o1.getName();

		if (o2 != null)
			name2 = o2.getName();

		if (name1 == null || name2 == null)
			return -1;

		return fCollator.compare(name1, name2);
	}
}

Back to the top