blob: 155a5d6d2f85d3ad87fc9d3aec6c3c00ba598542 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2013 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.team.internal.ui.mapping;
import org.eclipse.core.resources.IFolder;
import org.eclipse.core.resources.IResource;
import org.eclipse.team.internal.ui.IPreferenceIds;
import org.eclipse.team.internal.ui.TeamUIPlugin;
import org.eclipse.ui.views.navigator.ResourceSorter;
/**
* Sorter for use by Common Navigator
*/
public class ResourceModelSorter extends ResourceSorter {
public ResourceModelSorter() {
super(NAME);
}
protected int compareNames(IResource r1, IResource r2) {
if (getLayout().equals(IPreferenceIds.COMPRESSED_LAYOUT)
&& r1 instanceof IFolder
&& r2 instanceof IFolder) {
return collator.compare(r1.getProjectRelativePath().toString(), r2.getProjectRelativePath().toString());
}
return super.compareNames(r1, r2);
}
protected String getLayout() {
return TeamUIPlugin.getPlugin().getPreferenceStore().getString(IPreferenceIds.SYNCVIEW_DEFAULT_LAYOUT);
}
}