there is a collection with data
static ArrayList<MyBeans> all = new ArrayList<MyBeans>(); there is a table that displays it
TableModel model = new Table(all); JTable table = new JTable(model); let's say ArrayList<MyBeans> all has changed dynamically. How to transfer these changes to the table ??