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

Method getInfoProperty

ij/src/main/java/ij/ImagePlus.java:1744–1753  ·  view source on GitHub ↗

Returns the "Info" property string, or null if it is not found. @see #getProp @see #setProp

()

Source from the content-addressed store, hash-verified

1742 * @see #setProp
1743 */
1744 public String getInfoProperty() {
1745 String info = null;
1746 Object obj = getProperty("Info");
1747 if (obj!=null && (obj instanceof String)) {
1748 info = (String)obj;
1749 if (info.length()==0)
1750 info = null;
1751 }
1752 return info;
1753 }
1754
1755 /** Returns the property associated with 'key', or null if it is not found.
1756 * @see #getProp

Callers

nothing calls this directly

Calls 2

getPropertyMethod · 0.95
lengthMethod · 0.65

Tested by

no test coverage detected