Get an integer valued property. @param props the properties @param name the property name @param def default value if property not found @return the property value
(Properties props, String name, int def)
| 40 | * @return the property value |
| 41 | */ |
| 42 | public static int getIntProperty(Properties props, String name, int def) { |
| 43 | return getInt(getProp(props, name), def); |
| 44 | } |
| 45 | |
| 46 | /** |
| 47 | * Get a boolean valued property. |
no test coverage detected