diff options
author | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-04-20 10:37:07 +0000 |
---|---|---|
committer | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-04-20 10:37:07 +0000 |
commit | 806643b7dfa95667640576d4b046df2cf62052d2 (patch) | |
tree | e3e770fb691156966870b35eb1ac0629a2dd3429 /libjava/java/awt/Dialog.java | |
parent | db9f865b604b3d8b11148dbe115e90b75343f08c (diff) | |
download | ppe42-gcc-806643b7dfa95667640576d4b046df2cf62052d2.tar.gz ppe42-gcc-806643b7dfa95667640576d4b046df2cf62052d2.zip |
2004-04-20 Michael Koch <konqueror@gmx.de>
* java/awt/AWTPermission.java,
java/awt/Component.java,
java/awt/ComponentOrientation.java,,
java/awt/Dialog.java,
java/awt/FontMetrics.java,
java/awt/Graphics.java,
java/awt/datatransfer/DataFlavor.java,
java/beans/Introspector.java,
java/beans/PropertyEditor.java,
java/beans/PropertyEditorManager.java,
java/beans/beancontext/BeanContextServiceProvider.java:
Fixed HTML tags in javadocs all over.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@80890 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/awt/Dialog.java')
-rw-r--r-- | libjava/java/awt/Dialog.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libjava/java/awt/Dialog.java b/libjava/java/awt/Dialog.java index 5516ff906d0..6bfb80c8563 100644 --- a/libjava/java/awt/Dialog.java +++ b/libjava/java/awt/Dialog.java @@ -123,8 +123,8 @@ Dialog(Frame parent) * parent and modality, that is resizable and which has no title. * * @param parent The parent frame of this dialog box. - * @param modal <true> if this dialog box is modal, <code>false</code> - * otherwise. + * @param modal <code>true</code> if this dialog box is modal, + * <code>false</code> otherwise. * * @exception IllegalArgumentException If the owner's GraphicsConfiguration * is not from a screen device, or if owner is null. This exception is always @@ -164,8 +164,8 @@ Dialog(Frame parent, String title) * * @param parent The parent frame of this dialog box. * @param title The title string for this dialog box. - * @param modal <true> if this dialog box is modal, <code>false</code> - * otherwise. + * @param modal <code>true</code> if this dialog box is modal, + * <code>false</code> otherwise. * * @exception IllegalArgumentException If owner is null or * GraphicsEnvironment.isHeadless() returns true. @@ -183,8 +183,8 @@ Dialog(Frame parent, String title, boolean modal) * * @param parent The parent frame of this dialog box. * @param title The title string for this dialog box. - * @param modal <true> if this dialog box is modal, <code>false</code> - * otherwise. + * @param modal <code>true</code> if this dialog box is modal, + * <code>false</code> otherwise. * @param gc The <code>GraphicsConfiguration</code> object to use. * * @exception IllegalArgumentException If owner is null, the |