1 /*
2 * $Id: IUpdatableDataModel.java,v 1.18 2011/06/16 09:29:41 jbmeslin Exp $
3 */
4 package org.rcfaces.core.model;
5
6 /**
7 *
8 * @author Olivier Oeuillot (latest modification by $Author: jbmeslin $)
9 * @version $Revision: 1.18 $ $Date: 2011/06/16 09:29:41 $
10 */
11 public interface IUpdatableDataModel {
12 void addRow(int position, Object row);
13
14 void removeRow(int position);
15 }