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

Method run

ij/src/main/java/ij/plugin/Options.java:27–42  ·  view source on GitHub ↗
(String arg)

Source from the content-addressed store, hash-verified

25public class Options implements PlugIn {
26
27 public void run(String arg) {
28 if (arg.equals("fresh-start"))
29 {freshStart(); return;}
30 if (arg.equals("misc"))
31 {miscOptions(); return;}
32 else if (arg.equals("line"))
33 {lineWidth(); return;}
34 else if (arg.equals("io"))
35 {io(); return;}
36 else if (arg.equals("conv"))
37 {conversions(); return;}
38 else if (arg.equals("dicom"))
39 {dicom(); return;}
40 else if (arg.equals("reset"))
41 {reset(); return;}
42 }
43
44 // Miscellaneous Options
45 void miscOptions() {

Callers

nothing calls this directly

Calls 8

freshStartMethod · 0.95
miscOptionsMethod · 0.95
lineWidthMethod · 0.95
ioMethod · 0.95
conversionsMethod · 0.95
dicomMethod · 0.95
resetMethod · 0.95
equalsMethod · 0.45

Tested by

no test coverage detected