View Javadoc

1   /*
2    * $Id: IBundleVarCapability.java,v 1.3 2007/05/24 12:26:17 oeuillot Exp $
3    */
4   package org.rcfaces.core.component.capability;
5   
6   /**
7    * A string value specifying the name of a request scope attribute under which
8    * the resource bundle will be exposed as a Map.
9    * 
10   * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
11   * @version $Revision: 1.3 $ $Date: 2007/05/24 12:26:17 $
12   */
13  public interface IBundleVarCapability {
14  
15      /**
16       * Returns a string value specifying the name of a request scope attribute
17       * under which the resource bundle will be exposed as a Map.
18       * 
19       * @return bundle var name
20       */
21      String getBundleVar();
22  
23      /**
24       * Sets a string value specifying the name of a request scope attribute
25       * under which the resource bundle will be exposed as a Map.
26       * 
27       * @param bundleVar
28       *            bundle var name
29       */
30      void setBundleVar(String bundleVar);
31  }