Skip to main content
summaryrefslogblamecommitdiffstats
blob: 0a1d866baa03fee18b5735da5d03b656190d9ae1 (plain) (tree)

































                                                                                         
/*******************************************************************************
 * Copyright (c) 2004, 2008 Tasktop Technologies 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:
 *     Tasktop Technologies - initial API and implementation
 *******************************************************************************/

package org.eclipse.mylyn.internal.tasks.ui.util;

import java.util.Comparator;

import org.eclipse.mylyn.internal.tasks.core.AbstractTaskContainer;
import org.eclipse.mylyn.internal.tasks.ui.TasksUiPlugin;

/**
 * @author Steffen Pingel
 */
public class TaskContainerComparator implements Comparator<AbstractTaskContainer> {

	public int compare(AbstractTaskContainer c1, AbstractTaskContainer c2) {
		if (c1.equals(TasksUiPlugin.getTaskList().getDefaultCategory())) {
			return -1;
		} else if (c2.equals(TasksUiPlugin.getTaskList().getDefaultCategory())) {
			return 1;
		} else {
			return c1.getSummary().compareToIgnoreCase(c2.getSummary());
		}
	}

}

Back to the top