org.datafx.samples.app.LoadPersonsTask Maven / Gradle / Ivy
The newest version!
package org.datafx.samples.app;
import org.datafx.provider.ListDataProvider;
import org.datafx.provider.ListDataProviderBuilder;
import org.datafx.reader.ArrayDataReader;
import javax.inject.Inject;
/**
* This Action Task adds some basic data to the data model. This model will be injected by CDI
*/
public class LoadPersonsTask implements Runnable {
/**
* the basic data
*/
Person[] persons = {
new Person("Johan Vos", "Johan is CTO at LodgON, a Java Champion, a member of the BeJUG steering group, the Devoxx steering group and he is a JCP member."),
new Person("Jonathan Giles", "Jonathan Giles is the JavaFX UI controls technical lead at Oracle, where he has been involved with JavaFX since 2009."),
new Person("Hendrik Ebbers", "Hendrik Ebbers is Senior Java Architect at Materna GmbH in Dortmund, Germany.")};
/**
* The data model of the flow. The model will be injected by CDI
*/
@Inject
private DataModel model;
/**
* The run method will be called whenever the flow action will be called.
*/
@Override
public void run() {
model.getPersons().clear();
ListDataProvider ldp = ListDataProviderBuilder.create()
.dataReader(new ArrayDataReader(persons))
.resultList(model.getPersons())
.build();
ldp.retrieve();
}
}