(String arg)
| 25 | public 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() { |
nothing calls this directly
no test coverage detected