package pkg; import java.util.List; //import javafx.beans.property.*; /** * Test program for javadoc properties. */ public class MyClassT { private SimpleObjectProperty> list = new SimpleObjectProperty>(); /** * This is an Object property where the Object is a single {@code List}. * * @return the list */ public final ObjectProperty> listProperty() { return list; } public final void setList(List list) { } public final List getList() { return list.get(); } }