1 /*
2 * $Id: IEventData.java,v 1.18 2011/06/16 09:29:41 jbmeslin Exp $
3 *
4 */
5 package org.rcfaces.core.internal.renderkit;
6
7 /**
8 *
9 * @author Olivier Oeuillot (latest modification by $Author: jbmeslin $)
10 * @version $Revision: 1.18 $ $Date: 2011/06/16 09:29:41 $
11 */
12 public interface IEventData {
13
14 String getEventName();
15
16 String getEventValue();
17
18 String getEventItem();
19
20 int getEventDetail();
21
22 Object getEventObject(IDecoderContext decoderContext);
23 }