01: /*
02: * Copyright Javelin Software, All rights reserved.
03: */
04:
05: package com.javelin.swinglets.table;
06:
07: /**
08: * An interface to allow different models to set their sorted column.
09:
10: *
11: * @author Dino Fancellu
12: */
13:
14: public interface SortByColumn {
15: /**
16: * Declare the column to sort by.
17: */
18: public void sortByColumn(int column);
19: }
|