Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. if(rcn != null) {
  2. infoRcn = ficheProduitService.getInfoCcn(rcn); //Get informations from this rcn
  3. lCommentaireRcn = commentaireService.getCommentaries(rcn); //Get comments from this rcn
  4. } else {
  5. rcn = rcnForm.getRcnAlternate();
  6. infoRcn = ficheProduitService.getInfoCcn(rcn);
  7. lCommentaireRcn = commentaireService.getCommentaries(rcn); public DtoFicheProduit getInfoRcn() {
  8. return infoRcn;
  9. }
  10.  
  11. public void setInfoRcn(DtoFicheProduit infoRcn) {
  12. this.infoRcn = infoRcn;
  13. }
  14.  
  15. public List<DtoCommentaire> getlCommentaireRcn() {
  16. return lCommentaireRcn;
  17. }
  18.  
  19. public void setlCommentaireRcn(List<DtoCommentaire> lCommentaireRcn) {
  20. this.lCommentaireRcn = lCommentaireRcn;
  21. }
  22.  
  23. <s:property value="%{lCommentaireRcn}" />
  24. <s:property value="%{infoRcn.daoFicheProduit.essentialite}" />
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement