{
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());