public void addProperty(Object propertyId, Class<?> type,
Object defaultValue, boolean readOnly, boolean sortable) {
for (Item item : this.items) {
((PropertysetItem) item).addItemProperty(
propertyId, new ObjectProperty(defaultValue, type, readOnly));
}
}