Java Doc for DefaultingDirectoryChooser.java in  » Installer » AntInstaller » org » tp23 » gui » widget » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Installer » AntInstaller » org.tp23.gui.widget 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


javax.swing.JFileChooser
   org.tp23.gui.widget.DefaultingDirectoryChooser

DefaultingDirectoryChooser
public class DefaultingDirectoryChooser extends JFileChooser implements DirectoryChooser(Code)
A file chooser that makes a better default if the default directory is not available. Basically the default looks for the suggested directory and if it does not find it moves back up the directories. If still nothing is found (for example it may get to My Computer which you can not add file to) the home directory is selected, as in the default file chooser. To use this class call new DefaultingDirectoryChooser(boolean) and immediately call setDefaultDirectory(File) to determine the default. If you don't it behaves like the default JFileChooser Also if you call setCurrentDirectory(File) it will behave like JFileChooser This chooser has two modes CREATE_MODE and EXISTING_MODE.

In existing mode it is assumed the chooser is being used to identify an existing directory the default directory should exist if not the directory shown will be the next existing parent.

In create mode it is assumed that the last directory in the default directory is to be created and may not exist yet. Therefor the default directory displayed is the parent (with suitable defaulting) and the text box will contain the name of the last directory. e.g. if default is C:\Program Files\MyApp C:\Program Files will be displayed and MyApp will be shown in the text box (even if it does not exist yet) If C:\Program Files does not exist C:\ will be shown as with existing mode. Choosing select can lead to the creation of the file. It will not be automatically created that is the responsibility of the client code.
This class uses FileSystemView and will only display folders that return true to fsv.isFileSystem() This class also uses a bit of a hack by in CREATE_MODE it sets the selectables to files and directories although only shows the directories this way a non-existing Directory can be chosen. This is the only way I can get it to work on my Java version but I would not be supprised if it did not work on other versions of the Java API. It also means that setFileSelectionMode() should never be called by clients as it will break this hack. N.B. createMode is incompatible with multiselect mode
author:
   Paul Hinds
version:
   1.0


Field Summary
final public static  booleanCREATE_MODE
    
final public static  booleanEXISTING_MODE
    

Constructor Summary
public  DefaultingDirectoryChooser(boolean createMode)
    

Method Summary
public  voidinitDefaultNameListener()
    
public static  voidmain(String[] args)
    
public  voidsetDefaultDirectory(File dir)
     Sets the default directory.

Field Detail
CREATE_MODE
final public static boolean CREATE_MODE(Code)



EXISTING_MODE
final public static boolean EXISTING_MODE(Code)




Constructor Detail
DefaultingDirectoryChooser
public DefaultingDirectoryChooser(boolean createMode)(Code)




Method Detail
initDefaultNameListener
public void initDefaultNameListener()(Code)



main
public static void main(String[] args)(Code)



setDefaultDirectory
public void setDefaultDirectory(File dir)(Code)
Sets the default directory.
Parameters:
  dir - the current directory to point to



Fields inherited from javax.swing.JFileChooser
final public static String ACCEPT_ALL_FILE_FILTER_USED_CHANGED_PROPERTY(Code)(Java Doc)
final public static String ACCESSORY_CHANGED_PROPERTY(Code)(Java Doc)
final public static String APPROVE_BUTTON_MNEMONIC_CHANGED_PROPERTY(Code)(Java Doc)
final public static String APPROVE_BUTTON_TEXT_CHANGED_PROPERTY(Code)(Java Doc)
final public static String APPROVE_BUTTON_TOOL_TIP_TEXT_CHANGED_PROPERTY(Code)(Java Doc)
final public static int APPROVE_OPTION(Code)(Java Doc)
final public static String APPROVE_SELECTION(Code)(Java Doc)
final public static int CANCEL_OPTION(Code)(Java Doc)
final public static String CANCEL_SELECTION(Code)(Java Doc)
final public static String CHOOSABLE_FILE_FILTER_CHANGED_PROPERTY(Code)(Java Doc)
final public static String CONTROL_BUTTONS_ARE_SHOWN_CHANGED_PROPERTY(Code)(Java Doc)
final public static int CUSTOM_DIALOG(Code)(Java Doc)
final public static String DIALOG_TITLE_CHANGED_PROPERTY(Code)(Java Doc)
final public static String DIALOG_TYPE_CHANGED_PROPERTY(Code)(Java Doc)
final public static int DIRECTORIES_ONLY(Code)(Java Doc)
final public static String DIRECTORY_CHANGED_PROPERTY(Code)(Java Doc)
final public static int ERROR_OPTION(Code)(Java Doc)
final public static int FILES_AND_DIRECTORIES(Code)(Java Doc)
final public static int FILES_ONLY(Code)(Java Doc)
final public static String FILE_FILTER_CHANGED_PROPERTY(Code)(Java Doc)
final public static String FILE_HIDING_CHANGED_PROPERTY(Code)(Java Doc)
final public static String FILE_SELECTION_MODE_CHANGED_PROPERTY(Code)(Java Doc)
final public static String FILE_SYSTEM_VIEW_CHANGED_PROPERTY(Code)(Java Doc)
final public static String FILE_VIEW_CHANGED_PROPERTY(Code)(Java Doc)
final public static String MULTI_SELECTION_ENABLED_CHANGED_PROPERTY(Code)(Java Doc)
final public static int OPEN_DIALOG(Code)(Java Doc)
final public static int SAVE_DIALOG(Code)(Java Doc)
final public static String SELECTED_FILES_CHANGED_PROPERTY(Code)(Java Doc)
final public static String SELECTED_FILE_CHANGED_PROPERTY(Code)(Java Doc)
protected AccessibleContext accessibleContext(Code)(Java Doc)

Methods inherited from javax.swing.JFileChooser
public boolean accept(File f)(Code)(Java Doc)
public void addActionListener(ActionListener l)(Code)(Java Doc)
public void addChoosableFileFilter(FileFilter filter)(Code)(Java Doc)
public void approveSelection()(Code)(Java Doc)
public void cancelSelection()(Code)(Java Doc)
public void changeToParentDirectory()(Code)(Java Doc)
protected JDialog createDialog(Component parent) throws HeadlessException(Code)(Java Doc)
public void ensureFileIsVisible(File f)(Code)(Java Doc)
protected void fireActionPerformed(String command)(Code)(Java Doc)
public FileFilter getAcceptAllFileFilter()(Code)(Java Doc)
public AccessibleContext getAccessibleContext()(Code)(Java Doc)
public JComponent getAccessory()(Code)(Java Doc)
public ActionListener[] getActionListeners()(Code)(Java Doc)
public int getApproveButtonMnemonic()(Code)(Java Doc)
public String getApproveButtonText()(Code)(Java Doc)
public String getApproveButtonToolTipText()(Code)(Java Doc)
public FileFilter[] getChoosableFileFilters()(Code)(Java Doc)
public boolean getControlButtonsAreShown()(Code)(Java Doc)
public File getCurrentDirectory()(Code)(Java Doc)
public String getDescription(File f)(Code)(Java Doc)
public String getDialogTitle()(Code)(Java Doc)
public int getDialogType()(Code)(Java Doc)
public boolean getDragEnabled()(Code)(Java Doc)
public FileFilter getFileFilter()(Code)(Java Doc)
public int getFileSelectionMode()(Code)(Java Doc)
public FileSystemView getFileSystemView()(Code)(Java Doc)
public FileView getFileView()(Code)(Java Doc)
public Icon getIcon(File f)(Code)(Java Doc)
public String getName(File f)(Code)(Java Doc)
public File getSelectedFile()(Code)(Java Doc)
public File[] getSelectedFiles()(Code)(Java Doc)
public String getTypeDescription(File f)(Code)(Java Doc)
public FileChooserUI getUI()(Code)(Java Doc)
public String getUIClassID()(Code)(Java Doc)
public boolean isAcceptAllFileFilterUsed()(Code)(Java Doc)
public boolean isDirectorySelectionEnabled()(Code)(Java Doc)
public boolean isFileHidingEnabled()(Code)(Java Doc)
public boolean isFileSelectionEnabled()(Code)(Java Doc)
public boolean isMultiSelectionEnabled()(Code)(Java Doc)
public boolean isTraversable(File f)(Code)(Java Doc)
protected String paramString()(Code)(Java Doc)
public void removeActionListener(ActionListener l)(Code)(Java Doc)
public boolean removeChoosableFileFilter(FileFilter f)(Code)(Java Doc)
public void rescanCurrentDirectory()(Code)(Java Doc)
public void resetChoosableFileFilters()(Code)(Java Doc)
public void setAcceptAllFileFilterUsed(boolean b)(Code)(Java Doc)
public void setAccessory(JComponent newAccessory)(Code)(Java Doc)
public void setApproveButtonMnemonic(int mnemonic)(Code)(Java Doc)
public void setApproveButtonMnemonic(char mnemonic)(Code)(Java Doc)
public void setApproveButtonText(String approveButtonText)(Code)(Java Doc)
public void setApproveButtonToolTipText(String toolTipText)(Code)(Java Doc)
public void setControlButtonsAreShown(boolean b)(Code)(Java Doc)
public void setCurrentDirectory(File dir)(Code)(Java Doc)
public void setDialogTitle(String dialogTitle)(Code)(Java Doc)
public void setDialogType(int dialogType)(Code)(Java Doc)
public void setDragEnabled(boolean b)(Code)(Java Doc)
public void setFileFilter(FileFilter filter)(Code)(Java Doc)
public void setFileHidingEnabled(boolean b)(Code)(Java Doc)
public void setFileSelectionMode(int mode)(Code)(Java Doc)
public void setFileSystemView(FileSystemView fsv)(Code)(Java Doc)
public void setFileView(FileView fileView)(Code)(Java Doc)
public void setMultiSelectionEnabled(boolean b)(Code)(Java Doc)
public void setSelectedFile(File file)(Code)(Java Doc)
public void setSelectedFiles(File[] selectedFiles)(Code)(Java Doc)
protected void setup(FileSystemView view)(Code)(Java Doc)
public int showDialog(Component parent, String approveButtonText) throws HeadlessException(Code)(Java Doc)
public int showOpenDialog(Component parent) throws HeadlessException(Code)(Java Doc)
public int showSaveDialog(Component parent) throws HeadlessException(Code)(Java Doc)
public void updateUI()(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.