1 /*
2 * $Id: IEventReturnValue.java,v 1.18 2011/06/16 09:29:41 jbmeslin Exp $
3 */
4 package org.rcfaces.core.internal.service;
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 IEventReturnValue {
12
13 void setReturnValue(Object ret);
14
15 Object getReturnValue();
16 }