View Javadoc

1   /*
2    * To change this template, choose Tools | Templates
3    * and open the template in the editor.
4    */
5   
6   package org.galagosearch.tupleflow.typebuilder;
7   
8   /***
9    *
10   * @author trevor
11   */
12  public class OrderedFieldSpecification {
13      public OrderedFieldSpecification(Direction direction, String name) {
14          this.direction = direction;
15          this.name = name;
16      }
17  
18      public String getName() {
19          return name;
20      }
21  
22      public Direction getDirection() {
23          return direction;
24      }
25  
26      protected Direction direction;
27      protected String name;
28  }