use of org.whole.lang.model.IEntity in project whole by wholeplatform.
the class CardinalityPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
Cardinality entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(1);
list.add(entity.getCollection());
return list;
}
use of org.whole.lang.model.IEntity in project whole by wholeplatform.
the class FactorOfPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
FactorOf entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(2);
list.add(entity.getExp1());
list.add(entity.getExp2());
return list;
}
use of org.whole.lang.model.IEntity in project whole by wholeplatform.
the class FloorPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
Floor entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(1);
list.add(entity.getExpression());
return list;
}
use of org.whole.lang.model.IEntity in project whole by wholeplatform.
the class TrigonometricExpressionPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
TrigonometricExpression entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(1);
list.add(entity.getExpression());
return list;
}
use of org.whole.lang.model.IEntity in project whole by wholeplatform.
the class ClasspathPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
Classpath entity = getModelEntity();
List<IEntity> children = new ArrayList<IEntity>(2);
children.add(entity.getPersistence());
children.add(entity.getContent());
return children;
}
Aggregations