use of org.whole.lang.model.IEntity in project whole by wholeplatform.
the class LogarithmPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
Logarithm entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(2);
list.add(entity.getBase());
list.add(entity.getExpression());
return list;
}
use of org.whole.lang.model.IEntity in project whole by wholeplatform.
the class NotSubsetPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
NotSubset entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(2);
list.add(entity.getCollection1());
list.add(entity.getCollection2());
return list;
}
use of org.whole.lang.model.IEntity in project whole by wholeplatform.
the class RationalPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
Rational entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(2);
list.add(entity.getNumerator());
list.add(entity.getDenominator());
return list;
}
use of org.whole.lang.model.IEntity in project whole by wholeplatform.
the class ByDelimiterPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
ByDelimiter entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(1);
list.add(entity.getDelimiter());
return list;
}
use of org.whole.lang.model.IEntity in project whole by wholeplatform.
the class DataTerminalPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
DataTerminal entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(2);
list.add(entity.getPattern());
list.add(entity.getFormat());
return list;
}
Aggregations