Subversion Repositories eFlore/Applications.del

Rev

Rev 105 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 105 Rev 128
Line 26... Line 26...
26
	
26
	
27
	@UiField(provided = true)
27
	@UiField(provided = true)
Line 28... Line 28...
28
	public TextBox autreProposition = new TextBox();
28
	public TextBox autreProposition = new TextBox();
29
	
29
	
Line 30... Line 30...
30
	@UiField(provided = true)
30
	@UiField(provided = true)
31
	public TextBox pourcentageConfiance = new TextBox();
31
	public ListBox pourcentageConfiance = new ListBox();
Line 32... Line 32...
32
	
32
	
Line 49... Line 49...
49
		
49
		
50
		for(Iterator<String> it = propositionsTaxons.iterator(); it.hasNext();) {
50
		for(Iterator<String> it = propositionsTaxons.iterator(); it.hasNext();) {
51
			choixProposition.addItem(it.next());
51
			choixProposition.addItem(it.next());
52
		}
52
		}
-
 
53
	}
-
 
54
	
-
 
55
	public void chargerPourcentagesConfiance(ArrayList<String> pourcentagesConfiance) {
-
 
56
		
-
 
57
		pourcentageConfiance.clear();
-
 
58
		
-
 
59
		for(Iterator<String> it = pourcentagesConfiance.iterator(); it.hasNext();) {
-
 
60
			pourcentageConfiance.addItem(it.next());
-
 
61
		}
Line 53... Line 62...
53
	}
62
	}
54
 
63
 
55
	public TextBox getNomPrenom() {
64
	public TextBox getNomPrenom() {
Line 62... Line 71...
62
 
71
 
63
	public TextBox getAutreProposition() {
72
	public TextBox getAutreProposition() {
64
		return autreProposition;
73
		return autreProposition;
Line 65... Line 74...
65
	}
74
	}
66
 
75
 
67
	public TextBox getPourcentageConfiance() {
76
	public ListBox getPourcentageConfiance() {
Line 68... Line 77...
68
		return pourcentageConfiance;
77
		return pourcentageConfiance;
69
	}
78
	}