1 package thinlet.drafts;2 3 import thinlet.*;4 import thinlet.common.*;5 6 public class Choosers {7 8 public void chooseDirectory(Thinlet thinlet) {9 new FileChooser(thinlet, FileChooser.DIRECTORY_DIALOG);10 }11 }