< prev index next >
src/java.desktop/share/classes/javax/swing/plaf/basic/BasicFileChooserUI.java
Print this page
*** 764,774 ****
}
/**
* Property to remember whether a directory is currently selected in the UI.
*
! * @return <code>true</code> iff a directory is currently selected.
* @since 1.4
*/
protected boolean isDirectorySelected() {
return directorySelected;
}
--- 764,774 ----
}
/**
* Property to remember whether a directory is currently selected in the UI.
*
! * @return {@code true} iff a directory is currently selected.
* @since 1.4
*/
protected boolean isDirectorySelected() {
return directorySelected;
}
*** 785,795 ****
}
/**
* Property to remember the directory that is currently selected in the UI.
*
! * @return the value of the <code>directory</code> property
* @see #setDirectory
* @since 1.4
*/
protected File getDirectory() {
return directory;
--- 785,795 ----
}
/**
* Property to remember the directory that is currently selected in the UI.
*
! * @return the value of the {@code directory} property
* @see #setDirectory
* @since 1.4
*/
protected File getDirectory() {
return directory;
*** 797,807 ****
/**
* Property to remember the directory that is currently selected in the UI.
* This is normally called by the UI on a selection event.
*
! * @param f the <code>File</code> object representing the directory that is
* currently selected
* @since 1.4
*/
protected void setDirectory(File f) {
directory = f;
--- 797,807 ----
/**
* Property to remember the directory that is currently selected in the UI.
* This is normally called by the UI on a selection event.
*
! * @param f the {@code File} object representing the directory that is
* currently selected
* @since 1.4
*/
protected void setDirectory(File f) {
directory = f;
< prev index next >