001 /*
002 * To change this template, choose Tools | Templates
003 * and open the template in the editor.
004 */
005
006 package org.galagosearch.tupleflow.typebuilder;
007
008 /**
009 *
010 * @author trevor
011 */
012 public class OrderedFieldSpecification {
013 public OrderedFieldSpecification(Direction direction, String name) {
014 this.direction = direction;
015 this.name = name;
016 }
017
018 public String getName() {
019 return name;
020 }
021
022 public Direction getDirection() {
023 return direction;
024 }
025
026 protected Direction direction;
027 protected String name;
028 }