layout.getConstraint().insets = new Insets(5, 5, 5, 5);
pnl.setLayout(layout);
//Simple table with table listener
JTable t = getExampleTable();
layout.addNextRow(new JLabel("Simple table with TableListener (will submit on change)"));
layout.addNextRow(t);
//Simple table without table listener
t = getExampleTable();
layout.addNextRow(new JLabel("Simple table without TableListener"));