1 /*
2 * $Id: ISubmittedExternalValue.java,v 1.1 2007/04/30 08:28:58 oeuillot Exp $
3 */
4 package org.rcfaces.core.internal.capability;
5
6 /**
7 *
8 * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
9 * @version $Revision: 1.1 $ $Date: 2007/04/30 08:28:58 $
10 */
11 public interface ISubmittedExternalValue {
12 void setSubmittedExternalValue(Object value);
13
14 Object getSubmittedExternalValue();
15
16 boolean isSubmittedValueSetted();
17 }