Package tosa.loader.data

Examples of tosa.loader.data.ColumnData


  }

  private List<TableData> makeSampleTableData() {
    ArrayList<TableData> tableDatas = new ArrayList<TableData>();
    tableDatas.add(new TableData("foo",
      Arrays.asList(new ColumnData("bar", DBColumnTypeImpl.INT, null)),
      null
    ));
    return tableDatas;
  }
View Full Code Here

TOP

Related Classes of tosa.loader.data.ColumnData

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.