Subversion Repositories eFlore/Applications.del

Rev

Rev 447 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
46 aurelien 1
package org.tela_botanica.del.client.vues.plateformedetermination;
2
 
3
import com.google.gwt.core.client.GWT;
4
import com.google.gwt.uibinder.client.UiBinder;
5
import com.google.gwt.uibinder.client.UiField;
262 aurelien 6
import com.google.gwt.user.client.ui.Button;
46 aurelien 7
import com.google.gwt.user.client.ui.Composite;
447 gduche 8
import com.google.gwt.user.client.ui.Panel;
46 aurelien 9
import com.google.gwt.user.client.ui.VerticalPanel;
10
import com.google.gwt.user.client.ui.Widget;
11
 
303 aurelien 12
public class DeterminationVue extends Composite implements DeterminationPresenteur.Vue {
134 gduche 13
 
14
	@UiField
625 gduche 15
	Panel forum, detailImageObservation, formulaireRechercheEflore, voteProtocole, barreRepartition;
447 gduche 16
 
262 aurelien 17
	@UiField
18
	Button boutonAjoutProposition;
447 gduche 19
 
20
	@UiField
21
	Panel metadonnees;
134 gduche 22
 
23
	interface DeterminationUIiBinder extends UiBinder<Widget, DeterminationVue> {
24
	};
25
 
46 aurelien 26
	private static DeterminationUIiBinder uiBinder = GWT.create(DeterminationUIiBinder.class);
27
 
28
	public DeterminationVue() {
134 gduche 29
		initWidget(uiBinder.createAndBindUi(this));
46 aurelien 30
	}
134 gduche 31
 
625 gduche 32
	public Panel getForum() {
46 aurelien 33
		return forum;
34
	}
134 gduche 35
 
625 gduche 36
	public Panel getDetailImageObservation() {
46 aurelien 37
		return detailImageObservation;
38
	}
134 gduche 39
 
625 gduche 40
	public Panel getFormulaireRechercheEflore() {
70 aurelien 41
		return formulaireRechercheEflore;
42
	}
134 gduche 43
 
625 gduche 44
	public Panel getVoteProtocole() {
45
		return voteProtocole;
102 aurelien 46
	}
140 aurelien 47
 
625 gduche 48
	public Panel getBarreRepartition() {
140 aurelien 49
		return barreRepartition;
50
	}
262 aurelien 51
 
52
	public Button getBoutonAjoutProposition() {
53
		return boutonAjoutProposition;
54
	}
447 gduche 55
 
56
	public Panel getMetadonnees() {
57
		return metadonnees;
58
	}
46 aurelien 59
}