View Javadoc
1 /* 2 * Created on 2003-6-16 12:54:05 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:54:05 12 */ 13 public class DescendingOrderBy extends OrderBy { 14 /*** Empty array */ 15 public static final DescendingOrderBy[] EMPTY_ARRAY = 16 new DescendingOrderBy[0]; 17 /*** Constructor method for class DescendingOrderBy 18 * @param column Column object 19 */ 20 public DescendingOrderBy(Column column) { 21 super(column, true); 22 } 23 }

This page was automatically generated by Maven