public interface IRelationHandler<C,E>
| Modifier and Type | Method and Description |
|---|---|
E[] |
get(C owner)
The objects associated with owner.
|
C |
getOwner(E element)
The owner associated with the element.
|
E |
insert(C owner,
E value)
Add a new object to the association in owner.
|
E |
remove(C owner,
E value)
Remove an object from the association in owner.
|
int |
size(C owner)
The number of objects associated with owner.
|
E |
update(C owner,
E value,
E newValue)
Update value in the association for owner to newValue
|
E[] get(C owner)
owner - C getOwner(E element)
element - E insert(C owner, E value)
owner - value - E remove(C owner, E value)
owner - value - int size(C owner)
owner - Copyright © 2013 intarsys consulting GmbH. All Rights Reserved.