JButton btnAdd = new JButton();
btnAdd.setBorderPainted(false);
btnAdd.setIcon(new ImageIcon(GenericPropertyPanel.class.getResource("/hermes/browser/icons/recordAdd.png")));
btnAdd.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
model.addRow(new PropertyRow());
}
});
options.add(btnAdd, "1, 2");
JButton btnRemove = new JButton();