Revision 298 org.gvsig.tools/library/trunk/org.gvsig.tools/org.gvsig.tools.main/src/main/java/org/gvsig/tools/main/dynobject/DynObjectSetComponentAction.java

View differences:

DynObjectSetComponentAction.java
55 55
            }
56 56
        }
57 57

  
58
        public void dispose() {
59
            // Nothing to do
58
        public void accept(Visitor visitor) throws BaseException {
59
            accept(visitor, 0);
60 60
        }
61 61

  
62 62
        public void accept(Visitor visitor, long firstValueIndex)
......
70 70
            }
71 71
        }
72 72

  
73
        public void accept(Visitor visitor) throws BaseException {
74
            accept(visitor, 0);
73
        public void dispose() {
74
            // Nothing to do
75 75
        }
76 76

  
77 77
        public long getSize() throws BaseException {
78 78
            return values.length;
79 79
        }
80 80

  
81
        public DisposableIterator iterator(long index) throws BaseException {
82
            return null;
81
        public boolean isEmpty() throws BaseException {
82
            return false;
83 83
        }
84 84

  
85 85
        public DisposableIterator iterator() throws BaseException {
86 86
            return null;
87 87
        }
88 88

  
89
        public boolean isEmpty() throws BaseException {
90
            return false;
89
        public DisposableIterator iterator(long index) throws BaseException {
90
            return null;
91 91
        }
92 92

  
93 93
    }

Also available in: Unified diff