[svn r249] fixed annotation support , added talbecontroller
This commit is contained in:
parent
a4d1ff1c57
commit
d88cb26330
20 changed files with 403 additions and 58 deletions
|
|
@ -42,11 +42,7 @@ public class DeleteRowAction extends AbstractVascAction implements RowVascAction
|
|||
setToolTip("generic.toolTip");
|
||||
}
|
||||
|
||||
public void doRowAction(VascTable table,Object rowObject) {
|
||||
try {
|
||||
table.getVascDataSource().delete(rowObject);
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
public void doRowAction(VascTable table,Object rowObject) throws Exception {
|
||||
table.getVascDataSource().delete(rowObject);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue