Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 268 Rev 277
Line 17... Line 17...
17
 
17
 
18
public class ProjetAsyncDao {
18
public class ProjetAsyncDao {
Line 19... Line 19...
19
	private static final String SERVICE_NOM = "CoelProjet";
19
	private static final String SERVICE_NOM = "CoelProjet";
20
	
20
	
Line 21... Line 21...
21
	private ProjetListe projets = null;
21
	private ProjetListe projets = null;
22
	private Rafraichissable rafraichissement = null;
22
	private Rafraichissable vue = null;
23
	
23
	
Line 24... Line 24...
24
	public ProjetAsyncDao(Rafraichissable r) {
24
	public ProjetAsyncDao(Rafraichissable vueARafraichir) {
Line 25... Line 25...
25
		rafraichissement = r;
25
		vue = vueARafraichir;
Line 74... Line 74...
74
					if (projets == null)	{
74
					if (projets == null)	{
75
						projets = new ProjetListe();
75
						projets = new ProjetListe();
76
					}
76
					}
Line 77... Line 77...
77
				
77
				
78
					// Mise à jour du demandeur des données
78
					// Mise à jour du demandeur des données
79
					rafraichissement.rafraichir(projets);		
79
					vue.rafraichir(projets);		
Line 80... Line 80...
80
				}
80
				}
81
				
81
				
82
			});
82
			});