1 /*
2 * $Id: IClientDataItem.java,v 1.1 2007/02/02 17:33:31 oeuillot Exp $
3 */
4 package org.rcfaces.core.item;
5
6 import java.util.Map;
7
8 /**
9 *
10 * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
11 * @version $Revision: 1.1 $ $Date: 2007/02/02 17:33:31 $
12 */
13 public interface IClientDataItem {
14 Map getClientDataMap();
15
16 boolean isClientDataEmpty();
17 }