View Javadoc

1   // %1126721046041:hoplugins.commons.ui.sorter%
2   /*
3    * Created on 7-apr-2005
4    *
5    * To change the template for this generated file go to
6    * Window>Preferences>Java>Code Generation>Code and Comments
7    */
8   package hoplugins.commons.ui.sorter;
9   
10  
11  /***
12   * DOCUMENT ME!
13   *
14   * @author
15   */
16  class Directive {
17      private int column;
18      private int direction;
19  
20      /***
21       * Creates a new Directive object.
22       *
23       * @param column
24       * @param direction
25       */
26      public Directive(int column, int direction) {
27          this.column = column;
28          this.direction = direction;
29      }
30  
31      /***
32       * DOCUMENT ME!
33       *
34       * @return
35       */
36      public int getColumn() {
37          return column;
38      }
39  
40      /***
41       * DOCUMENT ME!
42       *
43       * @return
44       */
45      public int getDirection() {
46          return direction;
47      }
48  }