Package org.geoforge.guillc.filechooser

Examples of org.geoforge.guillc.filechooser.GfrFileChooserExistingDir


      {
         if (obj.equals(this._pnlFolderParent_))
         {
            String strChooserTitle = "Select existing folder";

            GfrFileChooserExistingDir chooser = new GfrFileChooserExistingDir(
                  new java.io.File(_pnlFolderParent_.getValue()),
                  strChooserTitle);

            if (chooser.showOpenDialog(this) == JFileChooser.APPROVE_OPTION)
            {
               File fle = chooser.getSelectedFile();
              
               if (fle != null)
               {
                  this._pnlFolderParent_.setContent(fle.getAbsolutePath());
View Full Code Here

TOP

Related Classes of org.geoforge.guillc.filechooser.GfrFileChooserExistingDir

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.