< prev index next >
src/java.desktop/share/classes/javax/swing/plaf/basic/BasicFileChooserUI.java
Print this page
@@ -764,11 +764,11 @@
}
/**
* Property to remember whether a directory is currently selected in the UI.
*
- * @return <code>true</code> iff a directory is currently selected.
+ * @return {@code true} iff a directory is currently selected.
* @since 1.4
*/
protected boolean isDirectorySelected() {
return directorySelected;
}
@@ -785,11 +785,11 @@
}
/**
* Property to remember the directory that is currently selected in the UI.
*
- * @return the value of the <code>directory</code> property
+ * @return the value of the {@code directory} property
* @see #setDirectory
* @since 1.4
*/
protected File getDirectory() {
return directory;
@@ -797,11 +797,11 @@
/**
* 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
+ * @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 >