if (!path.accept(DTOPath.PROGRAM_GC_FOR_LAUNCH)) {
items = new HashSet<ItemDTO>();
if (dsp5.getItems() != null) {
for (Item item : dsp5.getItems()) {
items.add(new ItemDTO(item, path));
}
}
}
}
if (path.accept(DTOPath.DSP5_DOC) || path.accept(DTOPath.ITEM_GC_FOR_LAUNCH)) {
manufacturer = (dsp5.getManufacturer() == null ? null : new ConcreteBusinessPartnerDTO(dsp5.getManufacturer(), path));
}
if (path.accept(DTOPath.PROGRAM_GC_FOR_LAUNCH)) {
items = new HashSet<ItemDTO>();
if (dsp5.getItems() != null) {
for (Item item : dsp5.getItems()) {
items.add(new ItemDTO(item, DTOPath.ITEM_GC_FOR_LAUNCH));
}
}
}
// related document are displayed on board ?
relatedDocuments = new HashMap<Long, String>();