use of org.whole.lang.model.IEntity in project whole by wholeplatform.
the class NotPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
Not entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(1);
list.add(entity.getConstraint());
return list;
}
use of org.whole.lang.model.IEntity in project whole by wholeplatform.
the class TestCasePart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
TestCase entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(6);
list.add(entity.getDescription());
list.add(entity.getPackageName());
list.add(entity.getName());
list.add(entity.getDeployer());
list.add(entity.getAspects());
list.add(entity.getTests());
return list;
}
use of org.whole.lang.model.IEntity in project whole by wholeplatform.
the class TestSuitePart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
TestSuite entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(6);
list.add(entity.getDescription());
list.add(entity.getPackageName());
list.add(entity.getName());
list.add(entity.getDeployer());
list.add(entity.getFilterFamilies());
list.add(entity.getTestCases());
return list;
}
use of org.whole.lang.model.IEntity in project whole by wholeplatform.
the class ThrowsPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
Throws entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(1);
list.add(entity.getThrowableType());
return list;
}
use of org.whole.lang.model.IEntity in project whole by wholeplatform.
the class AfterTestCasePart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
AfterTestCase entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(3);
list.add(entity.getDescription());
list.add(entity.getName());
list.add(entity.getBody());
return list;
}
Aggregations