(String title, String message)
| 20 | private boolean modal = true; |
| 21 | |
| 22 | public HTMLDialog(String title, String message) { |
| 23 | super(ij.IJ.getInstance(), title, true); |
| 24 | init(message); |
| 25 | } |
| 26 | |
| 27 | public HTMLDialog(Dialog parent, String title, String message) { |
| 28 | super(parent, title, true); |
nothing calls this directly
no test coverage detected