}
else if (myVmValue.isString()) {
presentation = new XStringValuePresentation(StringUtil.stripQuotesAroundValue(value));
}
else if (myVmValue.isNumber()) {
presentation = new XNumericValuePresentation(value);
}
else if ("boolean".equals(myVmValue.getKind())) {
presentation = new XRegularValuePresentation(value, null);
}
else if (myVmValue.isList()) {