Uses of Class
wt.security.WTJFileChooser

Packages that use WTJFileChooser
wt.clients.csm.widgets   
wt.clients.widgets   
wt.security The wt.security package gets jarred into wt/security/security.jar, which is signed so that this package may be used within a security manager, namely the Applet sandbox, to perform operations which are not typically allowed to non-signed code.  Each of the Access subclasses wrap a java.XXX api to give applets access to these operations.  Use the getXXXAccess factory method to retrieve an Access instance to perform these calls.  For example, FileAccess.getFileInputStream() wraps java.io.FileInputStream to give applets the ability to read files on the local system.  Additional prompts are displayed to the user for each of these types of operations (the grant/deny dialog you see when trying to upload/download content) per codebase, so that a "rogue" system can not get a copy of the security.jar and perform out-of-the-sandbox operations silently. 
 

Uses of WTJFileChooser in wt.clients.csm.widgets
 

Subclasses of WTJFileChooser in wt.clients.csm.widgets
 class ImagePreviewFileChooser
           
 

Uses of WTJFileChooser in wt.clients.widgets
 

Subclasses of WTJFileChooser in wt.clients.widgets
 class JCSMFileChooser
           
 

Uses of WTJFileChooser in wt.security
 

Fields in wt.security declared as WTJFileChooser
protected  WTJFileChooser FileAccess_plugin.FileAccessAction.jfc
           
 

Methods in wt.security that return WTJFileChooser
(package private)  WTJFileChooser FileAccess_plugin.newJFileChooser0()
           
(package private)  WTJFileChooser FileAccess_plugin.newJFileChooser1()
           
(package private)  WTJFileChooser FileAccess_plugin.newJFileChooser0(File currentDirectory)
           
(package private)  WTJFileChooser FileAccess_plugin.newJFileChooser1(File currentDirectory)
           
(package private)  WTJFileChooser FileAccess.newJFileChooser0()
           
(package private)  WTJFileChooser FileAccess.newJFileChooser0(File currentDirectory)
           
 

Methods in wt.security with parameters of type WTJFileChooser
(package private)  int FileAccess_plugin.JFileChooser_showDialog0(WTJFileChooser jfc, Component parent, String text)
           
(package private)  int FileAccess_plugin.JFileChooser_showDialog1(WTJFileChooser jfc, Component parent, String text)
           
(package private)  void FileAccess_plugin.JFileChooser_setCurrentDirectory0(WTJFileChooser jfc, File dir)
           
(package private)  void FileAccess_plugin.JFileChooser_setCurrentDirectory1(WTJFileChooser jfc, File dir)
           
(package private)  void FileAccess_plugin.JFileChooser_setSelectedFile0(WTJFileChooser jfc, File file)
           
(package private)  void FileAccess_plugin.JFileChooser_setSelectedFile1(WTJFileChooser jfc, File file)
           
(package private)  void FileAccess_plugin.JFileChooser_setSelectedFiles0(WTJFileChooser jfc, File[] file)
           
(package private)  void FileAccess_plugin.JFileChooser_setSelectedFiles1(WTJFileChooser jfc, File[] file)
           
protected  int FileAccess.JFileChooser_showDialog(WTJFileChooser jfc, Component parent, String text)
          Wrapper for JFileChooser.showDialog().
(package private)  int FileAccess.JFileChooser_showDialog0(WTJFileChooser jfc, Component parent, String text)
           
protected  void FileAccess.JFileChooser_setCurrentDirectory(WTJFileChooser jfc, File dir)
          Wrapper for JFileChooser.setCurrentDirectory().
(package private)  void FileAccess.JFileChooser_setCurrentDirectory0(WTJFileChooser jfc, File dir)
           
 void FileAccess.JFileChooser_setSelectedFile(WTJFileChooser jfc, File file)
          Wrapper for JFileChooser.setSelectedFile().
(package private)  void FileAccess.JFileChooser_setSelectedFile0(WTJFileChooser jfc, File file)
           
 void FileAccess.JFileChooser_setSelectedFiles(WTJFileChooser jfc, File[] file)
          Wrapper for JFileChooser.setSelectedFiles().
(package private)  void FileAccess.JFileChooser_setSelectedFiles0(WTJFileChooser jfc, File[] file)