diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-31 11:00:17 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-31 11:00:17 +0100 |
commit | 3a05aabe4190fc948ebdc94a14a15872f977ba0c (patch) | |
tree | 30f915b3d6d88c2ad2164ae73cb2c66e44885717 /ridljar | |
parent | 2df08acc4c0bdbe1df96770cab347d1f5df9d7a7 (diff) |
Silence javadoc 8 errors
Change-Id: Ib0b2286669d797708b30bf0fffdbe14c14d1e30d
Diffstat (limited to 'ridljar')
-rw-r--r-- | ridljar/com/sun/star/uno/IEnvironment.java | 2 | ||||
-rw-r--r-- | ridljar/com/sun/star/uno/IMethodDescription.java | 4 | ||||
-rw-r--r-- | ridljar/com/sun/star/uno/ITypeDescription.java | 22 | ||||
-rw-r--r-- | ridljar/com/sun/star/uno/Type.java | 4 |
4 files changed, 16 insertions, 16 deletions
diff --git a/ridljar/com/sun/star/uno/IEnvironment.java b/ridljar/com/sun/star/uno/IEnvironment.java index 34435ecff328..dc963414ef58 100644 --- a/ridljar/com/sun/star/uno/IEnvironment.java +++ b/ridljar/com/sun/star/uno/IEnvironment.java @@ -58,7 +58,7 @@ public interface IEnvironment { * given bridge <var>B2</var>.</li> * <li>A proxy object, created as a remote object is mapped into this * environment via a given bridge.</li> - * </ul></p> + * </ul> * * <p>The object actually registered may differ from the specified * <code>object</code> that is passed as an argument. This enables an diff --git a/ridljar/com/sun/star/uno/IMethodDescription.java b/ridljar/com/sun/star/uno/IMethodDescription.java index ffc9833e0500..cb2625a7327e 100644 --- a/ridljar/com/sun/star/uno/IMethodDescription.java +++ b/ridljar/com/sun/star/uno/IMethodDescription.java @@ -47,7 +47,7 @@ public interface IMethodDescription extends IMemberDescription { boolean isConst(); /** - * Gives any array of <code>ITypeDescription> of + * Gives any array of <code>ITypeDescription</code> of * the [in] parameters. * <p> * @return the in parameters @@ -55,7 +55,7 @@ public interface IMethodDescription extends IMemberDescription { ITypeDescription[] getInSignature(); /** - * Gives any array of <code>ITypeDescription> of + * Gives any array of <code>ITypeDescription</code> of * the [out] parameters. * <p> * @return the out parameters diff --git a/ridljar/com/sun/star/uno/ITypeDescription.java b/ridljar/com/sun/star/uno/ITypeDescription.java index 98f2d0824062..62a399b6a7a3 100644 --- a/ridljar/com/sun/star/uno/ITypeDescription.java +++ b/ridljar/com/sun/star/uno/ITypeDescription.java @@ -98,8 +98,8 @@ public interface ITypeDescription { /** * Gets the (UNO) type name. * - * <p>The following table lists how UNO types map to type names:</p> * <table> + * <caption>Mapping from UNO types to type names</caption> * <thead> * <tr><th>UNO type</th><th>type name</th></tr> * </thead> @@ -114,15 +114,15 @@ public interface ITypeDescription { * </tr> * <tr><td>LONG</td><td><code>"long"</code></td></tr> * <tr><td>UNSIGNED LONG</td><td><code>"unsigned long"</code></td></tr> - * <tr><td>HYPER</td><td></td><code>"hyper"</code></tr> + * <tr><td>HYPER</td><td><code>"hyper"</code></td></tr> * <tr> - * <td>UNSIGNED HYPER</td><td></td><code>"unsigned hyper"</code> + * <td>UNSIGNED HYPER</td><td><code>"unsigned hyper"</code></td> * </tr> - * <tr><td>FLOAT</td><td></td><code>"float"</code></tr> - * <tr><td>DOUBLE</td><td></td><code>"double"</code></tr> - * <tr><td>STRING</td><td></td><code>"string"</code></tr> - * <tr><td>TYPE</td><td></td><code>"type"</code></tr> - * <tr><td>ANY</td><td></td><code>"any"</code></tr> + * <tr><td>FLOAT</td><td><code>"float"</code></td></tr> + * <tr><td>DOUBLE</td><td><code>"double"</code></td></tr> + * <tr><td>STRING</td><td><code>"string"</code></td></tr> + * <tr><td>TYPE</td><td><code>"type"</code></td></tr> + * <tr><td>ANY</td><td><code>"any"</code></td></tr> * <tr> * <td>sequence type of base type <var>T</var></td> * <td><code>"[]"</code> followed by type name for <var>T</var></td> @@ -136,14 +136,14 @@ public interface ITypeDescription { * <td><var>N</var> (see below)</td> * </tr> * <tr> - * <td>exception type named <var>N</var> - * </td><td><var>N</var> (see below)</td> + * <td>exception type named <var>N</var></td> + * <td><var>N</var> (see below)</td> * </tr> * <tr> * <td>interface type named <var>N</var></td> * <td><var>N</var> (see below)</td> * </tr> - * <tbody> + * </tbody> * </table> * <p>For a UNO type named <var>N</var>, consisting of a sequence of module * names <var>M<sub>1</sub></var>, ..., <var>M<sub>n</sub></var> followed by diff --git a/ridljar/com/sun/star/uno/Type.java b/ridljar/com/sun/star/uno/Type.java index 74cb1eb591f6..c5f1b5c7bd71 100644 --- a/ridljar/com/sun/star/uno/Type.java +++ b/ridljar/com/sun/star/uno/Type.java @@ -199,9 +199,9 @@ public class Type { * * <p>In certain cases, one Java class corresponds to two UNO types (e.g., * the Java class <code>short[].class</code> corresponds to both a sequence - * of <codde>SHORT</code> and a sequence of <code>UNSIGNED SHORT</code> in + * of <code>SHORT</code> and a sequence of <code>UNSIGNED SHORT</code> in * UNO). In such ambiguous cases, the parameter <code>alternative</code> - * controls which UNO type is chosen:</p> + * controls which UNO type is chosen: * <ul> * <li>If the Java type is (an array type with element type) * <code>short</code> or <code>java.lang.Short</code>: If |