aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/awt/datatransfer/DataFlavor.java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2004-04-20 10:37:07 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2004-04-20 10:37:07 +0000
commit7431acbe5a56fb7a34777b040845a23d8135bfb7 (patch)
treee3e770fb691156966870b35eb1ac0629a2dd3429 /libjava/java/awt/datatransfer/DataFlavor.java
parent7f6f517f8a06729652fa201e85dc90dae4740972 (diff)
downloadgcc-7431acbe5a56fb7a34777b040845a23d8135bfb7.zip
gcc-7431acbe5a56fb7a34777b040845a23d8135bfb7.tar.gz
gcc-7431acbe5a56fb7a34777b040845a23d8135bfb7.tar.bz2
AWTPermission.java, [...]: Fixed HTML tags in javadocs all over.
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. From-SVN: r80890
Diffstat (limited to 'libjava/java/awt/datatransfer/DataFlavor.java')
-rw-r--r--libjava/java/awt/datatransfer/DataFlavor.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/libjava/java/awt/datatransfer/DataFlavor.java b/libjava/java/awt/datatransfer/DataFlavor.java
index d911bab..3ec2191 100644
--- a/libjava/java/awt/datatransfer/DataFlavor.java
+++ b/libjava/java/awt/datatransfer/DataFlavor.java
@@ -270,7 +270,7 @@ DataFlavor(Class representationClass, String humanPresentableName)
/**
* Initializes a new instance of <code>DataFlavor</code> with the
* specified MIME type and description. If the MIME type has a
- * "class=<rep class>" parameter then the representation class will
+ * "class=&lt;rep class&gt;" parameter then the representation class will
* be the class name specified. Otherwise the class defaults to
* <code>java.io.InputStream</code>. If the human readable name
* is not specified (<code>null</code>) then the human readable name
@@ -319,7 +319,7 @@ getRepresentationClassFromMime(String mimeString, ClassLoader classLoader)
/**
* Initializes a new instance of <code>DataFlavor</code> with the
* specified MIME type and description. If the MIME type has a
- * "class=<rep class>" parameter then the representation class will
+ * "class=&lt;rep class&gt;" parameter then the representation class will
* be the class name specified. Otherwise the class defaults to
* <code>java.io.InputStream</code>. If the human readable name
* is not specified (<code>null</code>) then the human readable name
@@ -709,10 +709,10 @@ equals(DataFlavor flavor)
* are met:
* <p>
* <ul>
- * <li>The object is not <code>null</code>.
- * <li>The object is an instance of <code>DataFlavor</code>.
+ * <li>The object is not <code>null</code>.</li>
+ * <li>The object is an instance of <code>DataFlavor</code>.</li>
* <li>The object's MIME type and representation class are equal to
- * this object's.
+ * this object's.</li>
* </ul>
*
* @param obj The <code>Object</code> to test against.