6566676869707172737475
final Value<?> value = (Value<?>) property; final Path path = (Path) value.content(); if( path != null ) { File f = new File( path.toOSString() ); while( f != null && ! f.exists() ) { f = f.getParentFile(); }
326327328329330331332333334335336
final Value<?> value = (Value<?>) property; final Path path = (Path) value.content(); if( path != null ) { dialog.setFilterPath( path.toOSString() ); } else if( roots.size() > 0 ) { dialog.setFilterPath( roots.get( 0 ).toOSString() ); }