use of org.whole.lang.frames.model.VariableFeature in project whole by wholeplatform.
the class VariableFeatureRightPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
VariableFeature entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(1);
list.add(entity.getFeature());
return list;
}
use of org.whole.lang.frames.model.VariableFeature in project whole by wholeplatform.
the class VariableFeatureDownPart method refreshVisuals.
@Override
protected void refreshVisuals() {
VariableFeature entity = getModelEntity();
VariableValue value = entity.getValue();
((VariableFeatureDownFigure) getFigure()).setVariableValue(DataTypeUtils.getDataKind(value).isEnumValue() && value.wEnumValue().equals(VariableValueEnum.SELECTED));
}
use of org.whole.lang.frames.model.VariableFeature in project whole by wholeplatform.
the class VariableFeatureDownPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
VariableFeature entity = getModelEntity();
List<IEntity> list = new ArrayList<IEntity>(1);
list.add(entity.getFeature());
return list;
}
use of org.whole.lang.frames.model.VariableFeature in project whole by wholeplatform.
the class VariableFeatureRightPart method refreshVisuals.
@Override
protected void refreshVisuals() {
VariableFeature entity = getModelEntity();
VariableValue value = entity.getValue();
((VariableFeatureRightFigure) getFigure()).setVariableValue(DataTypeUtils.getDataKind(value).isEnumValue() && value.wEnumValue().equals(VariableValueEnum.SELECTED));
}
Aggregations