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

Method setProperty

ij/src/main/java/ij/gui/Roi.java:2572–2580  ·  view source on GitHub ↗
(String key, String value)

Source from the content-addressed store, hash-verified

2570 }
2571
2572 public void setProperty(String key, String value) {
2573 if (key==null) return;
2574 if (props==null)
2575 props = new Properties();
2576 if (value==null || value.length()==0)
2577 props.remove(key);
2578 else
2579 props.setProperty(key, value);
2580 }
2581
2582 public String getProperty(String property) {
2583 if (props==null)

Callers 15

doRoiMethod · 0.95
doListMethod · 0.45
setCommandsMethod · 0.45
setMeasurementsMethod · 0.45
runMethod · 0.45
runMethod · 0.45
runMethod · 0.45
runMethod · 0.45
concatenateMethod · 0.45
runMethod · 0.45
setupMethod · 0.45
resetMethod · 0.45

Calls 2

lengthMethod · 0.65
removeMethod · 0.45

Tested by

no test coverage detected