Subversion Repositories eFlore/Applications.del

Rev

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

Rev 1196 Rev 1209
Line 15... Line 15...
15
	}
15
	}
Line 16... Line 16...
16
 
16
 
Line 17... Line 17...
17
	private static Binder binder = GWT.create(Binder.class);
17
	private static Binder binder = GWT.create(Binder.class);
18
 
18
 
Line 19... Line 19...
19
	@UiField
19
	@UiField
20
	protected HTMLPanel zoneRss, tableauPropositions, tableauPropositionOriginale, zonePropositions;
20
	HTMLPanel zoneRss, tableauPropositions, tableauPropositionInitiale, zonePropositions, tableauPropositionRetenue, lignePropositionRetenue;
21
 
21
 
Line 22... Line 22...
22
	public HTMLPanel getTableauPropositions() {
22
	public HTMLPanel getTableauPropositions() {
23
		return tableauPropositions;
23
		return tableauPropositions;
-
 
24
	}
24
	}
25
 
Line 25... Line 26...
25
 
26
	public ObservationDeterminationVue() {
26
	public ObservationDeterminationVue() {
27
		initWidget(binder.createAndBindUi(this));
27
		initWidget(binder.createAndBindUi(this));
28
		toggleTableauPropositionRetenue();
Line 52... Line 53...
52
	public void viderTableau() {
53
	public void viderTableau() {
53
		tableauPropositions.clear();
54
		tableauPropositions.clear();
54
	}
55
	}
Line 55... Line 56...
55
 
56
 
56
	@Override
57
	@Override
57
	public HasWidgets getTableauPropositionOriginale() {
58
	public HasWidgets getTableauPropositionInitiale() {
58
		return tableauPropositionOriginale;
59
		return tableauPropositionInitiale;
Line 59... Line 60...
59
	}
60
	}
60
	
61
	
61
	public void masquerPropositions() {
62
	public void masquerPropositions() {
Line 62... Line 63...
62
		this.zonePropositions.setVisible(false);
63
		this.zonePropositions.setVisible(false);
63
	}
64
	}
64
 
65
 
Line 65... Line 66...
65
	@Override
66
	@Override
Line 66... Line 67...
66
	public void viderTableauPropositionOriginale() {
67
	public void viderTableauPropositionInitiale() {
67
		tableauPropositionOriginale.clear();
68
		tableauPropositionInitiale.clear();
68
	
69
	
-
 
70
	}
-
 
71
	
-
 
72
	public HasWidgets getZoneRss() {
-
 
73
		return zoneRss;
-
 
74
	}
-
 
75
 
-
 
76
	@Override
-
 
77
	public void viderTableauPropositionRetenue() {
-
 
78
		tableauPropositionRetenue.clear();		
-
 
79
	}
-
 
80
 
-
 
81
	@Override
-
 
82
	public HasWidgets getTableauPropositionRetenue() {
-
 
83
		return tableauPropositionRetenue;
-
 
84
	}
-
 
85
 
69
	}
86
	@Override