View Javadoc

1   /*
2    * $Id: IValueLockedCapability.java,v 1.14 2011/06/16 09:29:40 jbmeslin Exp $
3    */
4   package org.rcfaces.core.component.capability;
5   
6   /**
7    * 
8    * @author Olivier Oeuillot (latest modification by $Author: jbmeslin $)
9    * @version $Revision: 1.14 $ $Date: 2011/06/16 09:29:40 $
10   */
11  public interface IValueLockedCapability {
12  
13      /**
14       * Get the lock state of the main value of the component.
15       * 
16       * @return The lock state.
17       */
18      boolean isValueLocked();
19  
20      /**
21       * Set the lock of the main value of the component.
22       * 
23       * @param valueLocked
24       *            The lock state.
25       */
26      void setValueLocked(boolean valueLocked);
27  
28  }