1 /*
2 * Created on 2003-6-16 12:52:42 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:52:42
12 */
13 public class AscendingOrderBy extends OrderBy {
14 /*** Constructor method for class AscendingOrderBy
15 * @param column Column object
16 */
17 public AscendingOrderBy(Column column) {
18 super(column, false);
19 }
20 }
This page was automatically generated by Maven