Examples of DummyDatasource


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
Copyright © 2018 www.massapi.com. 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.