Subversion Repositories eFlore/Applications.del

Rev

Rev 210 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 210 Rev 298
Line 2... Line 2...
2
 
2
 
3
import com.google.gwt.core.client.GWT;
3
import com.google.gwt.core.client.GWT;
4
import com.google.gwt.uibinder.client.UiBinder;
4
import com.google.gwt.uibinder.client.UiBinder;
5
import com.google.gwt.uibinder.client.UiField;
5
import com.google.gwt.uibinder.client.UiField;
6
import com.google.gwt.user.client.ui.Composite;
6
import com.google.gwt.user.client.ui.Composite;
7
import com.google.gwt.user.client.ui.HorizontalPanel;
7
import com.google.gwt.user.client.ui.HasWidgets;
8
import com.google.gwt.user.client.ui.VerticalPanel;
8
import com.google.gwt.user.client.ui.VerticalPanel;
Line 9... Line 9...
9
import com.google.gwt.user.client.ui.Widget;
9
import com.google.gwt.user.client.ui.Widget;
Line 10... Line 10...
10
 
10
 
11
public class EnsembleVotesVue extends Composite {
11
public class EnsembleVotesVue extends Composite implements EnsembleVotesPresenteur.Vue {
Line 12... Line 12...
12
 
12
 
Line 20... Line 20...
20
 
20
 
21
	public EnsembleVotesVue() {
21
	public EnsembleVotesVue() {
22
		initWidget(uiBinder.createAndBindUi(this));
22
		initWidget(uiBinder.createAndBindUi(this));
Line 23... Line 23...
23
	}
23
	}
24
 
24
 
25
	public VerticalPanel getPanneauVotes() {
25
	public HasWidgets getPanneauVotes() {
Line 26... Line -...
26
		return panneauVotes;
-
 
27
	}
-
 
28
 
-
 
29
	public void setPanneauVotes(VerticalPanel panneauVotes) {
-
 
30
		this.panneauVotes = panneauVotes;
26
		return panneauVotes;