01: /*
02: $Id: FileChooserDialogTest.java,v 1.3 2005/02/14 12:12:22 vauclair Exp $
03:
04: Copyright (C) 2002-2005 Sebastien Vauclair
05:
06: This file is part of Extensible Java Profiler.
07:
08: Extensible Java Profiler is free software; you can redistribute it and/or
09: modify it under the terms of the GNU General Public License as published by
10: the Free Software Foundation; either version 2 of the License, or
11: (at your option) any later version.
12:
13: Extensible Java Profiler is distributed in the hope that it will be useful,
14: but WITHOUT ANY WARRANTY; without even the implied warranty of
15: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16: GNU General Public License for more details.
17:
18: You should have received a copy of the GNU General Public License
19: along with Extensible Java Profiler; if not, write to the Free Software
20: Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21: */
22:
23: package ejp.presenter.gui;
24:
25: import java.io.File;
26:
27: import javax.swing.JFrame;
28:
29: /**
30: * TODOC
31: *
32: * @author Sebastien Vauclair
33: * @version <code>$Revision: 1.3 $<br>$Date: 2005/02/14 12:12:22 $</code>
34: */
35: public class FileChooserDialogTest {
36: /**
37: * Convenience method for testing purpose.
38: */
39: public static void main(String[] aArgs) {
40: FileChooserDialog fcd = new FileChooserDialog(new JFrame(),
41: new File(""));
42: System.out.println(fcd.showDialog());
43: System.out.println(fcd.showDialog());
44: System.out.println(fcd.showDialog());
45: System.exit(0);
46: }
47: }
|