use of org.whole.lang.model.IEntity in project whole by wholeplatform.
the class BeforeTestCasePart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
BeforeTestCase entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(3);
list.add(entity.getDescription());
list.add(entity.getName());
list.add(entity.getBody());
return list;
}
use of org.whole.lang.model.IEntity in project whole by wholeplatform.
the class EqualsPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
Equals entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(1);
list.add(entity.getObject());
return list;
}
use of org.whole.lang.model.IEntity in project whole by wholeplatform.
the class FilterPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
Filter entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(1);
list.add(entity.getName());
return list;
}
use of org.whole.lang.model.IEntity in project whole by wholeplatform.
the class HasKindPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
HasKind entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(1);
list.add(entity.getKind());
return list;
}
use of org.whole.lang.model.IEntity in project whole by wholeplatform.
the class CreateEntityPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
CreateEntity entity = getModelEntity();
List<IEntity> children = new ArrayList<IEntity>(5);
children.add(entity.getLabel());
children.add(entity.getModel());
children.add(entity.getRegistry());
children.add(entity.getEntityName());
children.add(entity.getArguments());
return children;
}
Aggregations