use of org.whole.lang.frames.model.Attribute in project whole by wholeplatform.
the class AttributeRowPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
Attribute entity = getModelEntity();
List<IEntity> children = new ArrayList<IEntity>(2);
children.add(entity.getName());
children.add(entity.getValue());
return children;
}
use of org.whole.lang.frames.model.Attribute in project whole by wholeplatform.
the class AttributeDownPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
Attribute entity = getModelEntity();
List<IEntity> children = new ArrayList<IEntity>(3);
children.add(entity.getName());
children.add(entity.getType());
children.add(entity.getValue());
return children;
}
use of org.whole.lang.frames.model.Attribute in project whole by wholeplatform.
the class AttributeRightPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
Attribute entity = getModelEntity();
List<IEntity> children = new ArrayList<IEntity>(3);
children.add(entity.getName());
children.add(entity.getType());
children.add(entity.getValue());
return children;
}