View Javadoc

1   /*
2    * $Id: IProperties.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 IProperties {
13  
14      boolean containsKey(String name);
15  
16      Object getProperty(String name);
17  
18      String getStringProperty(String name);
19  
20      String getStringProperty(String name, String defaultValue);
21  
22      boolean getBoolProperty(String name, boolean defaultValue);
23  
24      Boolean getBooleanProperty(String name);
25  
26      int getIntProperty(String name, int defaultValue);
27  
28      Number getNumberProperty(String name);
29  
30  }