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

Method openFiles

ij/src/main/java/MacAdapter9.java:31–39  ·  view source on GitHub ↗
(OpenFilesEvent e)

Source from the content-addressed store, hash-verified

29 }
30
31 @Override
32 public void openFiles(OpenFilesEvent e) {
33 for (File file: e.getFiles()) {
34 paths.add(file.getPath());
35 Thread thread = new Thread(this, "Open");
36 thread.setPriority(thread.getPriority()-1);
37 thread.start();
38 }
39 }
40
41 @Override
42 public void handleQuitRequestWith(QuitEvent e, QuitResponse response) {

Callers

nothing calls this directly

Calls 4

getFilesMethod · 0.80
addMethod · 0.65
getPathMethod · 0.45
startMethod · 0.45

Tested by

no test coverage detected