for (int i = 0; i < 5; i++) {
int index = _900_Everything_but_the_kitchen_sink.this.random.nextInt(13);
int nextAsk = _900_Everything_but_the_kitchen_sink.this.random.nextInt(1000);
if (DataUpdater.this.dataProvider.getRowCount() > index) {
BlinkingRowDataFixture rowObject = DataUpdater.this.dataProvider
.getRowObject(index);
// System.out.println("Ask: "+rowObject.getAsk_price()+" --> "+nextAsk);
rowObject.setAsk_price(nextAsk);
rowObject.setBid_price(-1 * nextAsk);
}
}
}
});
}