2
Fork 0

[svn r251] fixed annotations , made export stuff work , made edit with simple text element work

This commit is contained in:
willemc 2007-05-19 20:02:27 +02:00
parent 1c47fbffa3
commit 4f25dd082d
21 changed files with 438 additions and 64 deletions

View file

@ -193,6 +193,12 @@ public class VascTable {
* @param tableColumns the tableColumns to set
*/
public void addTableColumns(VascTableColumn tableColumn) {
if (tableColumn.getVascTable()!=null) {
if (tableColumn.getVascTable().equals(this) == false) {
throw new IllegalStateException("VascTableColumn already bound to an other VascTable instance.");
}
}
tableColumn.setVascTable(this);
tableColumns.add(tableColumn);
}