(String arg)
| 50 | private boolean openAsVirtualStack; |
| 51 | |
| 52 | public void run(String arg) { |
| 53 | ImageJ ij = IJ.getInstance(); |
| 54 | ij.setDropTarget(null); |
| 55 | new DropTarget(ij, this); |
| 56 | new DropTarget(Toolbar.getInstance(), this); |
| 57 | new DropTarget(ij.getStatusBar(), this); |
| 58 | } |
| 59 | |
| 60 | @AstroImageJ(reason = "Custom Drop Action", modified = true) |
| 61 | public void drop(DropTargetDropEvent dtde) { |
nothing calls this directly
no test coverage detected