Statistics
| Revision:

root / branches / Mobile_Compatible_Hito_1 / libFMap / src-file / org / gvsig / data / datastores / vectorial / file / shp_util / DBFDataCollection.java @ 21606

History | View | Annotate | Download (1.58 KB)

1
package org.gvsig.data.datastores.vectorial.file.shp_util;
2

    
3
import java.util.Collection;
4
import java.util.Iterator;
5

    
6
import org.gvsig.data.IDataCollection;
7
import org.gvsig.data.IObservable;
8

    
9
public class DBFDataCollection implements IDataCollection {
10

    
11
        public void dispose() {
12
                // TODO Auto-generated method stub
13

    
14
        }
15

    
16
        public int size() {
17
                // TODO Auto-generated method stub
18
                return 0;
19
        }
20

    
21
        public boolean isEmpty() {
22
                // TODO Auto-generated method stub
23
                return false;
24
        }
25

    
26
        public boolean contains(Object arg0) {
27
                // TODO Auto-generated method stub
28
                return false;
29
        }
30

    
31
        public Iterator iterator() {
32
                // TODO Auto-generated method stub
33
                return null;
34
        }
35

    
36
        public Object[] toArray() {
37
                // TODO Auto-generated method stub
38
                return null;
39
        }
40

    
41
        public Object[] toArray(Object[] arg0) {
42
                // TODO Auto-generated method stub
43
                return null;
44
        }
45

    
46
        public boolean add(Object arg0) {
47
                // TODO Auto-generated method stub
48
                return false;
49
        }
50

    
51
        public boolean remove(Object arg0) {
52
                // TODO Auto-generated method stub
53
                return false;
54
        }
55

    
56
        public boolean containsAll(Collection arg0) {
57
                // TODO Auto-generated method stub
58
                return false;
59
        }
60

    
61
        public boolean addAll(Collection arg0) {
62
                // TODO Auto-generated method stub
63
                return false;
64
        }
65

    
66
        public boolean removeAll(Collection arg0) {
67
                // TODO Auto-generated method stub
68
                return false;
69
        }
70

    
71
        public boolean retainAll(Collection arg0) {
72
                // TODO Auto-generated method stub
73
                return false;
74
        }
75

    
76
        public void clear() {
77
                // TODO Auto-generated method stub
78

    
79
        }
80

    
81
        public void update(IObservable observable, Object notification) {
82
                // TODO Auto-generated method stub
83

    
84
        }
85

    
86
}