Retrieves a string from IJ_Props or IJ_Prefs.txt. Does not retrieve strings set using Prefs.set().
(String key, String defaultString)
| 818 | /** Retrieves a string from IJ_Props or IJ_Prefs.txt. |
| 819 | Does not retrieve strings set using Prefs.set(). */ |
| 820 | public static String getString(String key, String defaultString) { |
| 821 | if (props==null) |
| 822 | return defaultString; |
| 823 | String s = props.getProperty(key); |
| 824 | if (s==null) |
| 825 | return defaultString; |
| 826 | else |
| 827 | return s; |
| 828 | } |
| 829 | |
| 830 | /** Retrieves a string from string in IJ_Props or IJ_Prefs.txt. */ |
| 831 | public static String getString(String key) { |
no test coverage detected