[svn r251] fixed annotations , made export stuff work , made edit with simple text element work
This commit is contained in:
parent
1c47fbffa3
commit
4f25dd082d
21 changed files with 438 additions and 64 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue