blob: 707c13cac287f728656788dddccec45f47667de7 [file] [log] [blame]
/**
* Copyright (c) 2004 - 2010 Eike Stepper (Berlin, Germany) 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:
* Eike Stepper - initial API and implementation
*
* Initial Publication:
* Eclipse Magazin - http://www.eclipse-magazin.de
*/
package org.eclipse.net4j.examples.fshare.ui;
import org.eclipse.net4j.examples.fshare.IFile;
import org.eclipse.jface.viewers.ViewerComparator;
/**
* @author Eike Stepper
*/
public class FShareComparator extends ViewerComparator
{
public FShareComparator()
{
}
@Override
public int category(Object element)
{
if (element instanceof IFile)
{
return 1;
}
return super.category(element);
}
}