import java.awt.*;

public class SwapTableController extends TableController
{
	public SwapTableController(TableRepresentation t, TableView v, Label m)
	{
		super(t, v, m);
	}
	public SwapTableController(Label m)
	{
		super(m);
	}
    public void cellChanged(int x, int y, Relation r)
    {
    	super.cellChanged(x, y, r);
		message.setText("Enter labels or numbers of rows/columns to swap. Click 'Swap'");
    }

}