Returns the property associated with 'key', or null if it is not found. @see #getProp @see #setProp @see #getStringProperty @see #getNumericProperty @see #getInfoProperty
(String key)
| 1760 | * @see #getInfoProperty |
| 1761 | */ |
| 1762 | public Object getProperty(String key) { |
| 1763 | if (properties==null) |
| 1764 | return null; |
| 1765 | else |
| 1766 | return properties.get(key); |
| 1767 | } |
| 1768 | |
| 1769 | /** Adds a key-value pair to this image's properties. The key |
| 1770 | * is removed from the properties table if value is null. |
no test coverage detected