use of org.whole.lang.frames.model.VariableValue 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.VariableValue 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