use of org.whole.lang.reusables.model.Classpath 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;
}