OpenConcerto

Dépôt officiel du code source de l'ERP OpenConcerto
sonarqube

svn://code.openconcerto.org/openconcerto

Rev

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

Rev 144 Rev 177
Line 199... Line 199...
199
    public C getCollection(final Object key) {
199
    public C getCollection(final Object key) {
200
        return getDel().getCollection(key);
200
        return getDel().getCollection(key);
201
    }
201
    }
202
 
202
 
203
    @Override
203
    @Override
-
 
204
    public boolean containsInCollection(K key, V val) {
-
 
205
        return getDel().containsInCollection(key, val);
-
 
206
    }
-
 
207
 
-
 
208
    @Override
204
    public Collection<V> allValues() {
209
    public Collection<V> allValues() {
205
        if (this.values == null) {
210
        if (this.values == null) {
206
            this.values = Collections.unmodifiableCollection(getDel().allValues());
211
            this.values = Collections.unmodifiableCollection(getDel().allValues());
207
        }
212
        }
208
        return this.values;
213
        return this.values;