Skip to content
Snippets Groups Projects
Commit 7eca7be9 authored by tpylak's avatar tpylak
Browse files

minor: remove unused class

SVN: 9648
parent be728456
No related branches found
No related tags found
No related merge requests found
package ch.systemsx.cisd.openbis.generic.client.web.server.resultset;
import java.util.Comparator;
/**
* An {@link Comparator} extension which bases its sorting on a specified class field.
*
* @author Christian Ribeaud
*/
interface IFieldComparator<T> extends Comparator<T>
{
/**
* Set the field name which determines the sorting.
* <p>
* Must be specified before comparison occurs.
* </p>
*/
void setFieldName(final String fieldName);
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment