summaryrefslogtreecommitdiff
path: root/libjava/java/awt/datatransfer
diff options
context:
space:
mode:
authormkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2004-04-20 10:37:07 +0000
committermkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2004-04-20 10:37:07 +0000
commit806643b7dfa95667640576d4b046df2cf62052d2 (patch)
treee3e770fb691156966870b35eb1ac0629a2dd3429 /libjava/java/awt/datatransfer
parentdb9f865b604b3d8b11148dbe115e90b75343f08c (diff)
downloadgcc-806643b7dfa95667640576d4b046df2cf62052d2.tar.gz
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/datatransfer')
-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 d911bab7146..3ec21911929 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.