| 116 | 
           benjamin | 
           1 | 
           package org.tela_botanica.del.client.vues.plateformedetermination.vote.protocole;
  | 
        
        
            | 
            | 
           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;
  | 
        
        
            | 
            | 
           6 | 
           import com.google.gwt.user.client.ui.Composite;
  | 
        
        
            | 
            | 
           7 | 
           import com.google.gwt.user.client.ui.FocusPanel;
  | 
        
        
            | 
            | 
           8 | 
           import com.google.gwt.user.client.ui.Widget;
  | 
        
        
            | 
            | 
           9 | 
              | 
        
        
            | 
            | 
           10 | 
           public class VoteProtocoleVue extends Composite {
  | 
        
        
            | 
            | 
           11 | 
              | 
        
        
            | 
            | 
           12 | 
           	interface MyUiBinder extends UiBinder<Widget, VoteProtocoleVue> {
  | 
        
        
            | 
            | 
           13 | 
           	}
  | 
        
        
            | 
            | 
           14 | 
              | 
        
        
            | 
            | 
           15 | 
           	private static MyUiBinder uiBinder = GWT.create(MyUiBinder.class);
  | 
        
        
            | 
            | 
           16 | 
              | 
        
        
            | 
            | 
           17 | 
           	@UiField
  | 
        
        
            | 
            | 
           18 | 
           	FocusPanel moyenneVotes, monVote;
  | 
        
        
            | 
            | 
           19 | 
              | 
        
        
            | 
            | 
           20 | 
           	protected VoteProtocoleVue() {
  | 
        
        
            | 
            | 
           21 | 
           		initWidget(uiBinder.createAndBindUi(this));
  | 
        
        
            | 
            | 
           22 | 
              | 
        
        
            | 
            | 
           23 | 
           	}
  | 
        
        
            | 
            | 
           24 | 
              | 
        
        
            | 
            | 
           25 | 
           	public FocusPanel getMonVote() {
  | 
        
        
            | 
            | 
           26 | 
           		return monVote;
  | 
        
        
            | 
            | 
           27 | 
           	}
  | 
        
        
            | 
            | 
           28 | 
              | 
        
        
            | 
            | 
           29 | 
           	public void setMonVote(FocusPanel monVote) {
  | 
        
        
            | 
            | 
           30 | 
           		this.monVote = monVote;
  | 
        
        
            | 
            | 
           31 | 
           	}
  | 
        
        
            | 
            | 
           32 | 
              | 
        
        
            | 
            | 
           33 | 
           	public FocusPanel getMoyenneVotes() {
  | 
        
        
            | 
            | 
           34 | 
           		return moyenneVotes;
  | 
        
        
            | 
            | 
           35 | 
           	}
  | 
        
        
            | 
            | 
           36 | 
              | 
        
        
            | 
            | 
           37 | 
           	public void setMoyenneVotes(FocusPanel moyenneVotes) {
  | 
        
        
            | 
            | 
           38 | 
           		this.moyenneVotes = moyenneVotes;
  | 
        
        
            | 
            | 
           39 | 
           	}
  | 
        
        
            | 
            | 
           40 | 
              | 
        
        
            | 
            | 
           41 | 
           }
  |