Returns the object in IJ.properties associated with 'key', or null if 'key' is not found.
(String key)
| 2672 | * with 'key', or null if 'key' is not found. |
| 2673 | */ |
| 2674 | public static Object getProperty(String key) { |
| 2675 | if (properties==null) |
| 2676 | return null; |
| 2677 | else |
| 2678 | return properties.get(key); |
| 2679 | } |
| 2680 | |
| 2681 | public static boolean statusBarProtected() { |
| 2682 | return protectStatusBar; |