Subversion Repositories eFlore/Applications.del

Rev

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

Rev 447 Rev 625
Line 10... Line 10...
10
import com.google.gwt.user.client.ui.Widget;
10
import com.google.gwt.user.client.ui.Widget;
Line 11... Line 11...
11
 
11
 
Line 12... Line 12...
12
public class DeterminationVue extends Composite implements DeterminationPresenteur.Vue {
12
public class DeterminationVue extends Composite implements DeterminationPresenteur.Vue {
13
 
13
 
Line 14... Line 14...
14
	@UiField
14
	@UiField
15
	VerticalPanel forum, detailImageObservation, formulaireRechercheEflore, vote, barreRepartition;
15
	Panel forum, detailImageObservation, formulaireRechercheEflore, voteProtocole, barreRepartition;
Line 16... Line 16...
16
	
16
	
Line 27... Line 27...
27
 
27
 
28
	public DeterminationVue() {
28
	public DeterminationVue() {
29
		initWidget(uiBinder.createAndBindUi(this));
29
		initWidget(uiBinder.createAndBindUi(this));
Line 30... Line 30...
30
	}
30
	}
31
 
31
 
32
	public VerticalPanel getForum() {
32
	public Panel getForum() {
Line 33... Line 33...
33
		return forum;
33
		return forum;
34
	}
34
	}
35
 
35
 
Line 36... Line 36...
36
	public VerticalPanel getDetailImageObservation() {
36
	public Panel getDetailImageObservation() {
37
		return detailImageObservation;
37
		return detailImageObservation;
38
	}
38
	}
Line 39... Line 39...
39
 
39
 
40
	public VerticalPanel getFormulaireRechercheEflore() {
40
	public Panel getFormulaireRechercheEflore() {
41
		return formulaireRechercheEflore;
41
		return formulaireRechercheEflore;
Line 42... Line 42...
42
	}
42
	}
43
 
43
 
44
	public VerticalPanel getVote() {
44
	public Panel getVoteProtocole() {
Line 45... Line 45...
45
		return vote;
45
		return voteProtocole;
46
	}
46
	}