コード例 #1
0
ファイル: RuntimeSingleton.java プロジェクト: haibocheng/flex
 /**
  * Int property accessor method to hide the configuration implementation.
  *
  * @param key property key
  * @param int default value
  * @return int value
  */
 public static int getInt(String key, int defaultValue) {
   return ri.getInt(key, defaultValue);
 }
コード例 #2
0
ファイル: RuntimeSingleton.java プロジェクト: haibocheng/flex
 /**
  * Int property accessor method to hide the configuration implementation.
  *
  * @param String key property key
  * @return int value
  */
 public static int getInt(String key) {
   return ri.getInt(key);
 }