2
Fork 0

[svn r340] WIP commit

This commit is contained in:
willemc 2008-09-08 02:07:46 +02:00
parent a40c22f13a
commit 435a26f4d6
108 changed files with 8325 additions and 680 deletions

View file

@ -26,7 +26,7 @@
package com.idcanet.vasc.impl.actions;
import com.idcanet.vasc.core.VascTable;
import com.idcanet.vasc.core.VascEntry;
import com.idcanet.vasc.core.actions.AbstractVascAction;
import com.idcanet.vasc.core.actions.RowVascAction;
@ -43,10 +43,10 @@ public class DeleteRowAction extends AbstractVascAction implements RowVascAction
setImage("vasc.action.del.image");
}
public void doRowAction(VascTable table,Object rowObject) throws Exception {
public void doRowAction(VascEntry entry,Object rowObject) throws Exception {
if (rowObject==null) {
return;
}
table.getVascViewRenderer().renderDelete(rowObject);
entry.getVascFrontend().renderDelete(rowObject);
}
}