Retrieves a boolean from IJ_Props or IJ_Prefs.txt. Does not retrieve boolean set using Prefs.set().
(String key, boolean defaultValue)
| 865 | /** Retrieves a boolean from IJ_Props or IJ_Prefs.txt. |
| 866 | Does not retrieve boolean set using Prefs.set(). */ |
| 867 | public static boolean getBoolean(String key, boolean defaultValue) { |
| 868 | if (props==null) return defaultValue; |
| 869 | String s = props.getProperty(key); |
| 870 | if (s==null) |
| 871 | return defaultValue; |
| 872 | else |
| 873 | return s.equals("true"); |
| 874 | } |
| 875 | |
| 876 | /** Finds a color in IJ_Props or IJ_Prefs.txt. */ |
| 877 | public static Color getColor(String key, Color defaultColor) { |