use of org.whole.lang.semantics.model.InputBinding in project whole by wholeplatform.
the class InputBindingRowPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
InputBinding entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(2);
list.add(entity.getIdentifier());
list.add(entity.getExpression());
return list;
}
Aggregations