blob: 1e0ccadb294392e23d8e3085f2209fc22ab221a0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2009 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.ui.tests.navigator.extension;
import java.text.Collator;
import org.eclipse.jface.viewers.Viewer;
import org.eclipse.jface.viewers.ViewerSorter;
public class TestSorterData extends ViewerSorter {
public static String _sorterProperty;
public static Object _sorterElement;
public boolean _forward = true;
public static void resetTest() {
_sorterProperty = null;
_sorterElement = null;
}
public TestSorterData() {
super();
}
public TestSorterData(Collator collator) {
super(collator);
}
/* (non-Javadoc)
* @see org.eclipse.jface.viewers.ViewerSorter#compare(org.eclipse.jface.viewers.Viewer, java.lang.Object, java.lang.Object)
*/
public int compare(Viewer viewer, Object e1, Object e2) {
if(e1 instanceof TestExtensionTreeData) {
if(e2 instanceof TestExtensionTreeData) {
TestExtensionTreeData lvalue = (TestExtensionTreeData) e1;
TestExtensionTreeData rvalue = (TestExtensionTreeData) e2;
if (_forward)
return lvalue.getName().compareTo(rvalue.getName());
return rvalue.getName().compareTo(lvalue.getName());
}
return -1;
} else if(e2 instanceof TestExtensionTreeData) {
return +1;
}
return super.compare(viewer, e1, e2);
}
public boolean isSorterProperty(Object element, String property) {
_sorterProperty = property;
_sorterElement = element;
return false;
}
}