View Javadoc
1 /* 2 * Created on 2003-6-16 12:16:31 by joel guo 3 * 4 * vTradEx Information Technology Inc. 5 */ 6 package com.cyclops.dbdigger.sql; 7 import com.cyclops.dbdigger.schema.Column; 8 /*** Add description <font color="red">HERE</font>! 9 * 10 * @author <a href="mailto:joeblack.guo@vtradex.com">joel guo</a> 11 * @since 2003-6-16 12:16:31 12 */ 13 public class OrderBy { 14 /*** Empty order by array */ 15 public static final OrderBy[] EMPTY_ARRAY = new OrderBy[0]; 16 private Column column; 17 private boolean isDescendent; 18 /*** Constructor method for class OrderBy 19 * @param acolumn Column object 20 * @param aisDescendent If is descendent 21 */ 22 public OrderBy(Column acolumn, boolean aisDescendent) { 23 column = acolumn; 24 isDescendent = aisDescendent; 25 } 26 /*** Method getColumn() 27 * @return Column object 28 */ 29 public Column getColumn() { 30 return column; 31 } 32 /*** Method isDescendent() 33 * @return If is descendent 34 */ 35 public boolean isDescendent() { 36 return isDescendent; 37 } 38 }

This page was automatically generated by Maven