简体   繁体   中英

What Java class can I extend to?

What Java class can I extend to so that I gain inheritance to treeTableView? How do I extend a class that is already extended?

I'm currently extending it using treeTableView.

The demo file shows this:

final TreeItem<User> root = new RecursiveTreeItem<User>(users, RecursiveTreeObject::getChildren);

This is what I tried working out, but it's not working:

final TreeItem<Patient> root = new Patient(patients, Patient::getChildren);

What do I do?

I extended the Person superclass to RecursiveTreeObject. Through inheritance it worked.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM