Subversion Repositories eFlore/Applications.del

Rev

Rev 1088 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1085 gduche 1
package org.tela_botanica.del.client.composants.votefleur;
2
 
3
import org.tela_botanica.del.client.composants.presenteur.Presenteur;
4
import com.google.gwt.user.client.ui.HasWidgets;
5
import com.google.gwt.user.client.ui.IsWidget;
6
 
7
public class VoteFleurPresenteur extends Presenteur {
8
 
9
	public interface Vue extends IsWidget {
10
		public void setNote(int note);
11
	}
12
 
13
	private Vue vue;
14
 
15
	public VoteFleurPresenteur(Vue vue) {
16
		this.vue = vue;
17
	}
18
 
19
	public void go(HasWidgets composite) {
1088 gduche 20
		composite.clear();
1085 gduche 21
		composite.add(vue.asWidget());
22
	}
23
 
24
	public void setNote(int note) {
25
		vue.setNote(note);
26
	}
27
 
28
	@Override
29
	protected void gererEvenements() {
30
		// TODO Auto-generated method stub
31
 
32
	}
33
}