jfxtras.labs.scene.control.edittable.EditTable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jfxtras-labs Show documentation
Show all versions of jfxtras-labs Show documentation
Experimental components for JavaFX 2
package jfxtras.labs.scene.control.edittable;
import java.util.List;
import javafx.scene.control.Control;
public abstract class EditTable extends Control
{
private List beanList;
public void setBeanList(List beanList) {
this.beanList = beanList;
}
public List getBeanList() {
return beanList;
}
}