Subversion Repositories eFlore/Applications.del

Rev

Rev 1003 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1003 Rev 1008
Line 50... Line 50...
50
		vue.vider();
50
		vue.vider();
51
		List<InterventionForum> interventions = CacheClient.getInstance().getObservationCourante().getInterventionsForum();
51
		List<InterventionForum> interventions = CacheClient.getInstance().getObservationCourante().getInterventionsForum();
Line 52... Line 52...
52
 
52
 
53
		for (InterventionForum interventionCourante : interventions) {
53
		for (InterventionForum interventionCourante : interventions) {
-
 
54
			ForumInterventionPresenteur presenteur = new ForumInterventionPresenteur(new ForumInterventionVue(), interventionCourante, new CommentaireServiceConcret(), new PropositionDeterminationServiceConcret());
54
			ForumInterventionPresenteur presenteur = new ForumInterventionPresenteur(new ForumInterventionVue(), interventionCourante, new CommentaireServiceConcret(), new PropositionDeterminationServiceConcret());
55
			presenteur.go(vue.getPanneauInterventions());
55
			ajouterCommentairesRecursivement(interventionCourante, presenteur);
56
			ajouterCommentairesRecursivement(interventionCourante, presenteur);
56
		}
57
		}
Line 57... Line 58...
57
	}
58
	}
Line 61... Line 62...
61
		for (InterventionForum interventionFils : fils) {
62
		for (InterventionForum interventionFils : fils) {
62
			ForumInterventionPresenteur presenteurFils = new ForumInterventionPresenteur(new ForumInterventionVue(), interventionFils, new CommentaireServiceConcret(), new PropositionDeterminationServiceConcret());
63
			ForumInterventionPresenteur presenteurFils = new ForumInterventionPresenteur(new ForumInterventionVue(), interventionFils, new CommentaireServiceConcret(), new PropositionDeterminationServiceConcret());
63
			ajouterCommentairesRecursivement(interventionFils, presenteurFils);
64
			ajouterCommentairesRecursivement(interventionFils, presenteurFils);
64
			presenteur.ajouterEnfant(presenteurFils);
65
			presenteur.ajouterEnfant(presenteurFils);
65
		}
66
		}
66
 
-
 
67
		presenteur.go(vue.getPanneauInterventions());
-
 
68
	}
67
	}
Line 69... Line 68...
69
 
68
 
70
	private void gererEvenements() {
69
	private void gererEvenements() {