I see examples on the internet for adding a row to a TableView, for example using the Person class in the Oracle documentation.
But I have a variable number of columns, so I can't bind to a Person (or any other) bean business object.
The Oracle example goes on to show how to bind columns to property names, but for that, it only shows how to add columns, but not rows.
My question is, can someone point me to a Hello, World example of dynamically adding arbitrary columns and/or rows to a JavaFX 8 TableView?