S - the type of the source objectsT - the type of the association targetspublic abstract static class FormulaEvaluatorUtil.AssociationToManyHelper<S extends IModelObject,T extends IModelObject> extends Object
<S> to target objects of type <T>.| Constructor and Description |
|---|
AssociationToManyHelper() |
| Modifier and Type | Method and Description |
|---|---|
List<? extends T> |
getTargets(List<? extends S> sourceObjects)
Returns a
List of target model objects found by calling
getTargetsInternal(IModelObject) for every object in the sourceObjects
List. |
protected abstract List<? extends T> |
getTargetsInternal(S sourceObject)
Returns a
List of target model objects by following a
1-to-many association from the given source object. |
public List<? extends T> getTargets(List<? extends S> sourceObjects)
List of target model objects found by calling
getTargetsInternal(IModelObject) for every object in the sourceObjects
List.sourceObjects - the model objects on which
getTargetsInternal(IModelObject) will be calledList of target model objectsprotected abstract List<? extends T> getTargetsInternal(S sourceObject)
List of target model objects by following a
1-to-many association from the given source object.sourceObject - the IModelObject source for the associationList of target model objectsCopyright © 2019. All rights reserved.