/** * This method gives information of Cover Page Supplement such as PDPI details,Clinical Trail * information,Contact person information. * * @return coverPageSupplementDocument {@link XmlObject} of type * PHS398CoverPageSupplement14Document. */ private PHS398CoverPageSupplement14Document getCoverPageSupplement() { PHS398CoverPageSupplement14Document coverPageSupplementDocument = PHS398CoverPageSupplement14Document.Factory.newInstance(); PHS398CoverPageSupplement14 coverPageSupplement = PHS398CoverPageSupplement14.Factory.newInstance(); coverPageSupplement.setFormVersion(S2SConstants.FORMVERSION_1_4); coverPageSupplement.setPDPI(getPDPI()); coverPageSupplement.setClinicalTrial(getClinicalTrial()); coverPageSupplement.setContactPersonInfo(getContactPersonInfo()); StemCells stemCells = getStemCells(); coverPageSupplement.setStemCells(stemCells); coverPageSupplementDocument.setPHS398CoverPageSupplement14(coverPageSupplement); return coverPageSupplementDocument; }
/** * This method gives information of Cover Page Supplement such as PDPI details,Clinical Trail * information,Contact person information. * * @return coverPageSupplementDocument {@link XmlObject} of type * PHS398CoverPageSupplement14Document. */ private PHS398CoverPageSupplement14Document getCoverPageSupplement() { PHS398CoverPageSupplement14Document coverPageSupplementDocument = PHS398CoverPageSupplement14Document.Factory.newInstance(); PHS398CoverPageSupplement14 coverPageSupplement = PHS398CoverPageSupplement14.Factory.newInstance(); answerHeaders = getQuestionnaireAnswers(pdDoc.getDevelopmentProposal(), true); coverPageSupplement.setFormVersion(S2SConstants.FORMVERSION_1_4); coverPageSupplement.setPDPI(getPDPI()); coverPageSupplement.setClinicalTrial(getClinicalTrial()); coverPageSupplement.setContactPersonInfo(getContactPersonInfo()); StemCells stemCells = getStemCells(); coverPageSupplement.setStemCells(stemCells); coverPageSupplementDocument.setPHS398CoverPageSupplement14(coverPageSupplement); return coverPageSupplementDocument; }