Skip to content
Snippets Groups Projects
Commit 4eb35f8d authored by buczekp's avatar buczekp
Browse files

[LMS-2104] fixed mapping

SVN: 21186
parent aa3ca51a
No related branches found
No related tags found
No related merge requests found
...@@ -191,7 +191,6 @@ public class DataPE extends AbstractIdAndCodeHolder<DataPE> implements ...@@ -191,7 +191,6 @@ public class DataPE extends AbstractIdAndCodeHolder<DataPE> implements
return isDerived; return isDerived;
} }
/** /**
* Set to <code>true</code> if this data set is data set is derived from a sample (otherwise it * Set to <code>true</code> if this data set is data set is derived from a sample (otherwise it
* is measured from a sample). * is measured from a sample).
...@@ -440,15 +439,14 @@ public class DataPE extends AbstractIdAndCodeHolder<DataPE> implements ...@@ -440,15 +439,14 @@ public class DataPE extends AbstractIdAndCodeHolder<DataPE> implements
component.setContainerInternal(component); component.setContainerInternal(component);
} }
/** removes connection with specified parent */ public void removeComponent(final DataPE component)
public void removeVirtualComponent(final DataPE component)
{ {
assert component != null; assert component != null;
this.containedDataSets.remove(component); this.containedDataSets.remove(component);
component.setContainerInternal(null); component.setContainerInternal(null);
} }
@OneToMany(mappedBy = "virtualParentInternal", fetch = FetchType.LAZY) @OneToMany(mappedBy = "containerInternal", fetch = FetchType.LAZY)
@OrderBy(clause = ColumnNames.DATA_CONTAINER_ORDER_COLUMN) @OrderBy(clause = ColumnNames.DATA_CONTAINER_ORDER_COLUMN)
public List<DataPE> getContainedDataSets() public List<DataPE> getContainedDataSets()
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment