1 /*
2 * $Id: ICommitableObject.java,v 1.1 2007/07/05 13:34:23 oeuillot Exp $
3 */
4 package org.rcfaces.core.model;
5
6 /**
7 *
8 * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
9 * @version $Revision: 1.1 $ $Date: 2007/07/05 13:34:23 $
10 */
11 public interface ICommitableObject {
12 void commit();
13
14 boolean isCommited();
15 }