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
This commit is contained in:
Michael Koch
2004-04-20 10:37:07 +00:00
committed by Michael Koch
parent 7f6f517f8a
commit 7431acbe5a
12 changed files with 59 additions and 42 deletions
@@ -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.