Subversion Repositories eFlore/Applications.del

Rev

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

Rev 321 Rev 882
Line 1... Line 1...
1
package org.tela_botanica.del.client.vues.plateformedetermination.forum;
1
package org.tela_botanica.del.client.vues.plateformedetermination.forum;
Line 2... Line 2...
2
 
2
 
Line 3... Line 3...
3
import org.tela_botanica.del.client.modeles.PossesseurDeCommentaires;
3
import org.tela_botanica.del.client.modeles.InterventionForum;
4
 
4
 
Line 5... Line 5...
5
import com.google.gwt.user.client.ui.HasWidgets;
5
import com.google.gwt.user.client.ui.HasWidgets;
Line 6... Line 6...
6
import com.google.gwt.user.client.ui.IsWidget;
6
import com.google.gwt.user.client.ui.IsWidget;
Line 7... Line 7...
7
 
7
 
8
public class ArbreCommentairePresenteur {
8
public class ArbreCommentairePresenteur {
9
	
9
	
Line 10... Line 10...
10
	private PossesseurDeCommentaires possesseurDeCommentaires;
10
	private InterventionForum possesseurDeCommentaires;
Line 11... Line 11...
11
	
11
	
12
	public interface Vue extends IsWidget {
12
	public interface Vue extends IsWidget {
13
		public void creerArbreCommentaire(PossesseurDeCommentaires possesseurDeCommentaires);
13
		public void creerArbreCommentaire(InterventionForum possesseurDeCommentaires);
14
	}
14
	}
15
	
15
	
Line 27... Line 27...
27
	
27
	
28
	public IsWidget getArbreCommentaireVue() {
28
	public IsWidget getArbreCommentaireVue() {
29
		return vue;
29
		return vue;
Line 30... Line 30...
30
	}
30
	}
31
	
31
	
32
	public PossesseurDeCommentaires getPossesseurDeCommentaires() {
32
	public InterventionForum getPossesseurDeCommentaires() {
Line 33... Line 33...
33
		return possesseurDeCommentaires;
33
		return possesseurDeCommentaires;