blob: 9821f44183bcc50735363512d64dfbd565c9bcee [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Oakland Software Incorporated 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:
* Oakland Software Incorporated - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.tests.navigator.extension;
import java.text.Collator;
import org.eclipse.core.resources.IResource;
import org.eclipse.jface.viewers.Viewer;
import org.eclipse.jface.viewers.ViewerSorter;
public class TestSorterResource extends ViewerSorter {
public static String _sorterProperty;
public static Object _sorterElement;
public boolean _forward = true;
public static void resetTest() {
_sorterProperty = null;
_sorterElement = null;
}
public TestSorterResource() {
super();
}
public TestSorterResource(Collator collator) {
super(collator);
}
public int compare(Viewer viewer, Object e1, Object e2) {
if(e1 instanceof IResource) {
if(e2 instanceof IResource) {
IResource lvalue = (IResource) e1;
IResource rvalue = (IResource) e2;
if (_forward)
return lvalue.getName().compareTo(rvalue.getName());
return rvalue.getName().compareTo(lvalue.getName());
}
return -1;
} else if(e2 instanceof IResource) {
return +1;
}
return super.compare(viewer, e1, e2);
}
public boolean isSorterProperty(Object element, String property) {
_sorterProperty = property;
_sorterElement = element;
return false;
}
}