List decorations = DOUIDecoration.getEvent4MenuModel(property);
StringBuffer buffer = new StringBuffer();
for (Iterator it = decorations.iterator(); it.hasNext();) {
DOUIDecoration dec = (DOUIDecoration) it.next();
buffer.append(" ").append(dec.getDecoPoint());
}
return buffer.toString();
}