/*
 * Created on Nov 23, 2003
 *
 * To change the template for this generated file go to
 * Window - Preferences - Java - Code Generation - Code and Comments
 */

/**
 * @author lerner
 *
 * To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Generation - Code and Comments
 */
interface SortAlgorithm {
        public abstract int getSteps();
        public abstract void sort();
}
