001/*
002  The Broad Institute
003  SOFTWARE COPYRIGHT NOTICE AGREEMENT
004  This software and its documentation are copyright (2003-2008) by the
005  Broad Institute/Massachusetts Institute of Technology. All rights are
006  reserved.
007
008  This software is supplied without any warranty or guaranteed support
009  whatsoever. Neither the Broad Institute nor MIT can be responsible for its
010  use, misuse, or functionality.
011*/
012
013package ca.bc.webarts.widgets.treetable;
014//package org.genomespace.gsui.ui.table;
015
016/**
017 *  Interface for sorting table columns
018 *
019 * @author    Joshua Gould
020 */
021public interface ColumnSorter
022{
023   public void sortOrderChanged(SortEvent e);
024}