Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.mapcontext / org.gvsig.fmap.mapcontext.api / src / main / java / org / gvsig / fmap / mapcontext / LayersToSnap.java @ 47439

History | View | Annotate | Download (1.26 KB)

1
/*
2
 * To change this license header, choose License Headers in Project Properties.
3
 * To change this template file, choose Tools | Templates
4
 * and open the template in the editor.
5
 */
6
package org.gvsig.fmap.mapcontext;
7

    
8
import java.util.Collection;
9
import java.util.HashSet;
10
import java.util.function.Predicate;
11
import org.gvsig.fmap.mapcontext.layers.vectorial.FLyrVect;
12

    
13
/**
14
 *
15
 * @author fdiaz
16
 */
17
public class LayersToSnap extends HashSet<FLyrVect> {
18

    
19
    public LayersToSnap() {
20
    }
21

    
22
    @Override
23
    public boolean add(FLyrVect e) {
24
        return super.add(e); //To change body of generated methods, choose Tools | Templates.
25
    }
26

    
27
    @Override
28
    public boolean addAll(Collection<? extends FLyrVect> c) {
29
        return super.addAll(c); //To change body of generated methods, choose Tools | Templates.
30
    }
31

    
32
    @Override
33
    public void clear() {
34
        super.clear(); //To change body of generated methods, choose Tools | Templates.
35
    }
36

    
37
    @Override
38
    public boolean remove(Object o) {
39
        return super.remove(o); //To change body of generated methods, choose Tools | Templates.
40
    }
41

    
42
    @Override
43
    public boolean removeAll(Collection<?> c) {
44
        return super.removeAll(c); //To change body of generated methods, choose Tools | Templates.
45
    }
46

    
47
}