formattedValue = "" + v.getIntValue();
}
} else if (value instanceof ListValueProperty) {
final StringBuffer sb = new StringBuffer();
for (int i = 0; i < ((ListValueProperty) value).getValue().size(); i++) {
ListValueElement o = ((ListValueProperty) value).getValue()
.get(i);
if (o instanceof SimpleValueProperty) {
String val = ((SimpleValueProperty) o).getStringValue();
if (sb.length() > 0) {
sb.append("\n");