FileDialog (2)
method
show()
is modal. When it terminates the file selected can be found
FileDialog fd = new FileDialog(); fd.show(); System.out.println("Selected: " + fd.getFile());
No event processing is required by the application.
Slide 60