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