2
Fork 0

[svn r260] made swing work

This commit is contained in:
willemc 2007-08-02 03:56:02 +02:00
parent 0f55185807
commit 848eb431d6
14 changed files with 825 additions and 127 deletions

View file

@ -45,6 +45,9 @@ public class EditRowAction extends AbstractVascAction implements RowVascAction {
public void doRowAction(VascTable table,Object rowObject) throws Exception {
if (rowObject==null) {
return;
}
table.getVascViewRenderer().renderEdit(table,rowObject);
}
}