Subversion Repositories eFlore/Applications.del

Rev

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

Rev 650 Rev 1089
Line 11... Line 11...
11
 
11
 
12
public class LigneProtocoleVue extends Composite implements LigneProtocolePresenteur.Vue {
12
public class LigneProtocoleVue extends Composite implements LigneProtocolePresenteur.Vue {
13
		@UiField
13
		@UiField
Line 14... Line -...
14
		Panel zoneVote;
-
 
15
		
-
 
16
		@UiField 
-
 
17
		Label nom;
14
		Panel zoneVote;
18
		
15
		
Line 19... Line 16...
19
		interface LigneProtocoleUIiBinder extends UiBinder<Widget, LigneProtocoleVue> {
16
		interface LigneProtocoleUIiBinder extends UiBinder<Widget, LigneProtocoleVue> {
Line 20... Line 17...
20
		};
17
		};
21
 
18
 
22
		private static LigneProtocoleUIiBinder uiBinder = GWT.create(LigneProtocoleUIiBinder.class);
19
		private static LigneProtocoleUIiBinder uiBinder = GWT.create(LigneProtocoleUIiBinder.class);
Line 23... Line 20...
23
 
20
 
24
		public LigneProtocoleVue() {
-
 
25
			initWidget(uiBinder.createAndBindUi(this));
-
 
26
		}
-
 
27
 
-
 
28
		@Override
-
 
29
		public void setNom(String nom) {
-
 
30
			this.nom.setText(nom);
21
		public LigneProtocoleVue() {
31
			this.nom.setTitle(nom);
22
			initWidget(uiBinder.createAndBindUi(this));
32
		}
23
		}
Line 33... Line 24...
33
 
24