Package com.sorma.proto.datasource

Examples of com.sorma.proto.datasource.DummyDatasource


import com.sorma.proto.datasource.DummyRow;
import com.sorma.proto.datasource.Row;

public class DummyData {
  public DummyRow[] getRows() {
    DummyDatasource ds = new DummyDatasource(500);
   
    List<DummyRow> rows = new ArrayList<DummyRow>(500);
    while(ds.hasMoreElements()) {
      rows.add(ds.nextElement());
    }
    return rows.toArray(new DummyRow[0]);
  }
View Full Code Here

TOP

Related Classes of com.sorma.proto.datasource.DummyDatasource

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.