return "ListPropertyInfo [payload=" + payload + "]";
}
@Override
public ResultCell populateResultCell(ResultCellFactory factory) {
ResultCell cell = super.populateResultCell(factory);
cell.setType(PropertyType.LIST);
cell.setParent(null);
cell.setPayload(null);
cell.setChildren(new ArrayList<ResultCell>(payload.size()));
for (PropertyInfo child : payload) {
cell.getChildren().add(child.populateResultCell(factory));
}
return cell;
}