MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / getProperty

Method getProperty

ij/src/main/java/ij/ImagePlus.java:1762–1767  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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.

Callers 15

updateImageMethod · 0.95
showMethod · 0.95
getImageMethod · 0.95
getBufferedImageMethod · 0.95
setImageMethod · 0.95
getStringPropertyMethod · 0.95
getInfoPropertyMethod · 0.95
getStackMethod · 0.95
revertMethod · 0.95
createImagePlusMethod · 0.95
getLocationAsStringMethod · 0.95
flattenMethod · 0.95

Calls 1

getMethod · 0.45

Tested by

no test coverage detected