blob: 6f949e117127f56c26407014d9c4d036f23e148c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2008 Tasktop Technologies and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* https://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.tasks.ui;
import java.util.Comparator;
import org.eclipse.mylyn.tasks.core.TaskRepository;
/**
* @author Mik Kersten
*/
public class TaskRepositoryComparator implements Comparator<TaskRepository> {
public int compare(TaskRepository t1, TaskRepository t2) {
if (t1.getRepositoryLabel() != null && t2.getRepositoryLabel() != null) {
return t1.getRepositoryLabel().compareTo(t2.getRepositoryLabel());
} else if (t1.getRepositoryLabel() == null && t2.getRepositoryLabel() == null) {
return t1.getRepositoryUrl().compareTo(t2.getRepositoryUrl());
} else if (t1.getRepositoryLabel() == null) {
return -1;
} else if (t2.getRepositoryLabel() == null) {
return 1;
}
return 1;
}
}