Revision 6689

View differences:

trunk/applications/appgvSIG/src/com/iver/cit/gvsig/gui/Table.java
1521 1521

  
1522 1522
	}
1523 1523

  
1524
	public void afterRowEditEvent(AfterRowEditEvent e) {
1524
	public void afterRowEditEvent(IRow feat, AfterRowEditEvent e) {
1525 1525
		// TODO Auto-generated method stub
1526 1526

  
1527 1527
	}
trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/edition/EditableAdapter.java
1124 1124
		for (int i = 0; i < editionListeners.size(); i++) {
1125 1125
			IEditionListener listener = (IEditionListener) editionListeners
1126 1126
					.get(i);
1127
			listener.afterRowEditEvent(event);
1127
			listener.afterRowEditEvent(null, event);
1128 1128
		}
1129 1129

  
1130 1130
	}
......
1149 1149
		for (int i = 0; i < editionListeners.size(); i++) {
1150 1150
			IEditionListener listener = (IEditionListener) editionListeners
1151 1151
					.get(i);
1152
			listener.afterRowEditEvent(event);
1152
			listener.afterRowEditEvent(null, event);
1153 1153
		}
1154 1154
	}
1155 1155

  
......
1250 1250
		for (int i = 0; i < editionListeners.size(); i++) {
1251 1251
			IEditionListener listener = (IEditionListener) editionListeners
1252 1252
					.get(i);
1253
			listener.afterRowEditEvent(event);
1253
			listener.afterRowEditEvent(null, event);
1254 1254
		}
1255 1255

  
1256 1256
	}
trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/edition/IEditionListener.java
9 9

  
10 10
	void beforeRowEditEvent(IRow feat,BeforeRowEditEvent e);
11 11

  
12
	void afterRowEditEvent(AfterRowEditEvent e);
12
	void afterRowEditEvent(IRow feat, AfterRowEditEvent e);
13 13
	
14 14
	void beforeFieldEditEvent(BeforeFieldEditEvent e);
15 15
	void afterFieldEditEvent(AfterFieldEditEvent e);
trunk/extensions/extCAD/src/com/iver/cit/gvsig/EditionChangeManager.java
57 57
 *
58 58
 * $Id$
59 59
 * $Log$
60
 * Revision 1.7  2006-07-20 11:03:27  fjp
60
 * Revision 1.8  2006-08-08 07:19:05  caballero
61
 * afterRowEditEvent con IRow
62
 *
63
 * Revision 1.7  2006/07/20 11:03:27  fjp
61 64
 * *** empty log message ***
62 65
 *
63 66
 * Revision 1.6  2006/07/13 12:36:01  fjp
......
120 123
	 *  (non-Javadoc)
121 124
	 * @see com.iver.cit.gvsig.fmap.edition.IEditionListener#afterRowEditEvent(com.iver.cit.gvsig.fmap.edition.AfterRowEditEvent)
122 125
	 */
123
	public void afterRowEditEvent(AfterRowEditEvent e) {
126
	public void afterRowEditEvent(IRow feat, AfterRowEditEvent e) {
124 127
		View[] views = (View[]) PluginServices.getMDIManager().getAllViews();
125 128

  
126 129
		for (int i=0 ; i<views.length ; i++){
trunk/extensions/extAddEventTheme/src/com/iver/gvsig/addeventtheme/AddEventThemListener.java
100 100
		}
101 101
	}
102 102

  
103
	public void afterRowEditEvent(AfterRowEditEvent e) {
103
	public void afterRowEditEvent(IRow feat, AfterRowEditEvent e) {
104 104

  
105 105

  
106 106
	}

Also available in: Unified diff