use of org.whole.lang.environment.model.VariablesViewModel in project whole by wholeplatform.
the class VariablesViewModelPart method getModelSpecificChildren.
@Override
protected List<IEntity> getModelSpecificChildren() {
VariablesViewModel entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(1);
list.add(entity.getEnvironments());
return list;
}
Aggregations