Partial implemenation of load-Analysis code.
[cfb.git] / prod / net / jaekl / cfb / db / Sort.java
1 package net.jaekl.cfb.db;
2
3 public class Sort {
4         public static enum Direction { ASCENDING, DESCENDING };
5         
6         private Direction m_dir;
7         private Column m_col;
8         
9         public Sort(Column col, Direction dir) {
10                 m_col = col;
11                 m_dir = dir;
12         }
13         
14         public Column getColumn() { return m_col; }
15         public Direction getDirection() { return m_dir; }
16 }