Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 851 Rev 865
Line 120... Line 120...
120
			}
120
			}
121
		});
121
		});
122
		add(grille);
122
		add(grille);
123
	}
123
	}
Line 124... Line 124...
124
 
124
 
125
	private void clicListe(Collection m) {
125
	private void clicListe(Collection collection) {
126
		if (store.getCount() > 0) {
126
		if (collection != null && store.getCount() > 0) {
127
			mediateur.clicListeCollection(m);
127
			mediateur.clicListeCollection(collection);
128
		}
128
		}
Line 129... Line 129...
129
	}
129
	}
130
	
130