use of org.whole.lang.changes.model.Replace in project whole by wholeplatform.
the class ReplacePart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
Replace entity = getModelEntity();
List<IEntity> children = new ArrayList<IEntity>(2);
children.add(entity.getDeleteContent());
children.add(entity.getInsertContent());
return children;
}