Skip to main content
summaryrefslogtreecommitdiffstats
blob: c0e12ee7178d1041ee185b3866bea2afbbd7f6fd (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
/*******************************************************************************
 * 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.team.internal.ui.target;

import java.net.URL;

import org.eclipse.jface.viewers.Viewer;
import org.eclipse.jface.viewers.ViewerSorter;
import org.eclipse.team.internal.core.target.Site;

public class SiteViewSorter extends ViewerSorter {
	
	public int category(Object element) {
		if (element instanceof Site) {
			return ((Site)element).getType().hashCode();
		}
		return 0;
	}

	public int compare(Viewer viewer, Object o1, Object o2) {
		int cat1 = category(o1);
		int cat2 = category(o2);
		if (cat1 != cat2) return cat1 - cat2;
		
		if (o1 instanceof Site && o2 instanceof Site) {
			URL site1 = ((Site)o1).getURL();
			URL site2 = ((Site)o2).getURL();
			return site1.toExternalForm().compareTo(site2.toExternalForm());
		}
		return super.compare(viewer, o1, o2);
	}
}

Back to the top