Revision 22477 branches/v2_0_0_prep/applications/appgvSIG/src/com/iver/cit/gvsig/project/documents/table/gui/PopupMenu.java

View differences:

PopupMenu.java
147 147
    		public void actionPerformed(ActionEvent e) {
148 148

  
149 149
    			try {
150
    				table.copyRow();
150
    				table.copyFeature();
151 151
    			} catch (ReadException e1) {
152 152
    				e1.printStackTrace();
153 153
    			}
......
159 159
    		public void actionPerformed(ActionEvent e) {
160 160

  
161 161
    			try {
162
    				table.cutRow();
162
    				table.cutFeature();
163 163
    			} catch (ReadException e1) {
164 164
    				e1.printStackTrace();
165 165
    			}
......
173 173
    			//De momento no se puede a�adir filas en una posici�n en concreto.
174 174

  
175 175
    			try {
176
    				table.pasteRow();
176
    				table.pasteFeature();
177 177
    			} catch (ReadException e1) {
178 178
    				e1.printStackTrace();
179 179
    			}
......
201 201
    	removeRow.addActionListener(new ActionListener() {
202 202
    		public void actionPerformed(ActionEvent e) {
203 203
    			try {
204
    				table.removeRow();
204
    				table.removeFeature();
205 205
    			} catch (ReadException e1) {
206 206
    				e1.printStackTrace();
207 207
    			}

Also available in: Unified diff