blob: 8fe5393f75093052030939a6dbf870ab2388ea18 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004-2008 Istvan Rath and Daniel Varro
* 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:
* Istvan Rath - initial API and implementation
*******************************************************************************/
package org.eclipse.viatra2.frameworkgui.content;
import java.util.Comparator;
import org.eclipse.jface.viewers.ViewerSorter;
public class NameSorter extends ViewerSorter {
// TODO
@Override
protected Comparator getComparator()
{
return super.getComparator();
};
@Override
public int category(Object element)
{
return super.category(element);
}
}