KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > thinlet > drafts > Choosers


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 }
Popular Tags