table.revalidate();
}
private void initializeTableModel() {
tableModel = new ObjectTableModel(new String[] { COLUMN_NAMES_0, COLUMN_NAMES_1 },
new Functor[] {
new Functor(Map.Entry.class, "getKey"), // $NON-NLS-1$
new Functor(Map.Entry.class, "getValue") }, // $NON-NLS-1$
new Functor[] {
null, //new Functor("setName"), // $NON-NLS-1$
new Functor(Map.Entry.class,"setValue", new Class[] { Object.class }) // $NON-NLS-1$
},
new Class[] { String.class, String.class });
}