blob: cb283238fda077d8e6144865a1109c8bf3ca5fb9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 - 2006 University Of British Columbia 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:
* University Of British Columbia - initial API and implementation
*******************************************************************************/
package org.eclipse.mylar.provisional.core;
import java.util.Comparator;
/**
* @author Mik Kersten
*/
public class InterestComparator<T> implements Comparator<T> {
public int compare(T e1, T e2) {
if (e1 instanceof IMylarElement && e2 instanceof IMylarElement) {
IMylarElement info1 = (IMylarElement) e1;
IMylarElement info2 = (IMylarElement) e2;
if (info1 != null && info2 != null) {
float v1 = info1.getInterest().getValue();
float v2 = info2.getInterest().getValue();
if (v1 >= v2)
return -1;
if (v1 < v2)
return 1;
}
}
return 0;
}
}