blob: 5fbd5306b58349fb9beedd55931f08114575174c [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2002, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM - Initial API and implementation
**********************************************************************/
package org.eclipse.core.tools;
public interface ISorter {
public boolean isReversed();
public void setReversed(boolean value);
public int getColumnNumber();
public int states();
}