aboutsummaryrefslogtreecommitdiff
path: root/libjava/javax/swing/JDialog.java
diff options
context:
space:
mode:
authorMark Wielaard <mark@klomp.org>2004-07-17 12:42:46 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2004-07-17 12:42:46 +0000
commit6fd3cc05db5e1d259d184105feb5f1111350661d (patch)
tree79e85efe13a1e8b733e8e4cd5ab1c2f750a9834d /libjava/javax/swing/JDialog.java
parent649067c3624a25712b0668f0c48060cca0faf030 (diff)
downloadgcc-6fd3cc05db5e1d259d184105feb5f1111350661d.zip
gcc-6fd3cc05db5e1d259d184105feb5f1111350661d.tar.gz
gcc-6fd3cc05db5e1d259d184105feb5f1111350661d.tar.bz2
Box.java: Put FIXME comment above class declaration.
2004-07-17 Mark Wielaard <mark@klomp.org> * javax/swing/Box.java: Put FIXME comment above class declaration. * javax/swing/JButton.java: Remove illegal L&F HTML from comments. * javax/swing/JCheckBox.java: Likewise. * javax/swing/JDialog.java: Likewise. * javax/swing/JRadioButton.java: Likewise. * javax/swing/JToggleButton.java: Likewise. * javax/swing/UIManager.java: Likewise. * javax/swing/border/TitledBorder.java: Likewise. * javax/swing/plaf/basic/BasicLabelUI.java: Likewise. * javax/swing/plaf/basic/BasicLookAndFeel.java: Likewise. * javax/swing/plaf/basic/BasicPopupMenuSeparatorUI.java: Likewise. * javax/swing/plaf/basic/BasicProgressBarUI.java: Likewise. * javax/swing/plaf/basic/BasicScrollBarUI.java: Likewise. * javax/swing/plaf/basic/BasicSeparatorUI.java: Likewise. * javax/swing/text/JTextComponent.java: Likewise. From-SVN: r84866
Diffstat (limited to 'libjava/javax/swing/JDialog.java')
-rw-r--r--libjava/javax/swing/JDialog.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/libjava/javax/swing/JDialog.java b/libjava/javax/swing/JDialog.java
index 598f493..d331580 100644
--- a/libjava/javax/swing/JDialog.java
+++ b/libjava/javax/swing/JDialog.java
@@ -76,7 +76,7 @@ public class JDialog extends Dialog implements Accessible, WindowConstants,
/** The default action taken when closed. */
private int close_action = HIDE_ON_CLOSE;
- /** Whether JDialogs are decorated by the L&F. */
+ /** Whether JDialogs are decorated by the Look and Feel. */
private static boolean decorated = false;
/**
@@ -237,7 +237,7 @@ public class JDialog extends Dialog implements Accessible, WindowConstants,
* This method returns whether JDialogs will have their
* window decorations provided by the Look and Feel.
*
- * @return Whether the window decorations are L&F provided.
+ * @return Whether the window decorations are Look and Feel provided.
*/
public static boolean isDefaultLookAndFeelDecorated()
{
@@ -249,7 +249,7 @@ public class JDialog extends Dialog implements Accessible, WindowConstants,
* window decorations provided by the Look and Feel.
*
* @param defaultLookAndFeelDecorated Whether the window
- * decorations are L&F provided.
+ * decorations are Look and Feel provided.
*/
public static void setDefaultLookAndFeelDecorated(boolean defaultLookAndFeelDecorated)
{