Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 671 Rev 684
Line 150... Line 150...
150
	public void rafraichir(Object nouvelleDonnees) {
150
	public void rafraichir(Object nouvelleDonnees) {
151
		if (nouvelleDonnees instanceof CollectionListe) {
151
		if (nouvelleDonnees instanceof CollectionListe) {
152
			CollectionListe collections = (CollectionListe) nouvelleDonnees;
152
			CollectionListe collections = (CollectionListe) nouvelleDonnees;
Line 153... Line 153...
153
 
153
 
154
			if (collections != null) {			
154
			if (collections != null) {			
155
				List<Collection> liste = (List<Collection>) collections.toList();
155
				List<Collection> liste = collections.toList();
156
				store.removeAll();
156
				store.removeAll();
Line 157... Line 157...
157
				store.add(liste);
157
				store.add(liste);
158
	
158