From 3a05aabe4190fc948ebdc94a14a15872f977ba0c Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 31 Jan 2014 11:00:17 +0100 Subject: Silence javadoc 8 errors Change-Id: Ib0b2286669d797708b30bf0fffdbe14c14d1e30d --- ridljar/com/sun/star/uno/IEnvironment.java | 2 +- ridljar/com/sun/star/uno/IMethodDescription.java | 4 ++-- ridljar/com/sun/star/uno/ITypeDescription.java | 22 +++++++++++----------- ridljar/com/sun/star/uno/Type.java | 4 ++-- 4 files changed, 16 insertions(+), 16 deletions(-) (limited to 'ridljar/com/sun/star/uno') 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 B2. *
  • A proxy object, created as a remote object is mapped into this * environment via a given bridge.
  • - *

    + * * *

    The object actually registered may differ from the specified * object 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 ITypeDescription> of + * Gives any array of ITypeDescription of * the [in] parameters. *

    * @return the in parameters @@ -55,7 +55,7 @@ public interface IMethodDescription extends IMemberDescription { ITypeDescription[] getInSignature(); /** - * Gives any array of ITypeDescription> of + * Gives any array of ITypeDescription of * the [out] parameters. *

    * @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. * - *

    The following table lists how UNO types map to type names:

    * + * * * * @@ -114,15 +114,15 @@ public interface ITypeDescription { * * * - * "hyper" + * * - * "unsigned hyper" + * * - * "float" - * "double" - * "string" - * "type" - * "any" + * + * + * + * + * * * * @@ -136,14 +136,14 @@ public interface ITypeDescription { * * * - * + * + * * * * * * - * + * *
    Mapping from UNO types to type names
    UNO typetype name
    LONG"long"
    UNSIGNED LONG"unsigned long"
    HYPER
    HYPER"hyper"
    UNSIGNED HYPERUNSIGNED HYPER"unsigned hyper"
    FLOAT
    DOUBLE
    STRING
    TYPE
    ANY
    FLOAT"float"
    DOUBLE"double"
    STRING"string"
    TYPE"type"
    ANY"any"
    sequence type of base type T"[]" followed by type name for TN (see below)
    exception type named N - * N (see below)exception type named NN (see below)
    interface type named NN (see below)
    *

    For a UNO type named N, consisting of a sequence of module * names M1, ..., Mn 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 { * *

    In certain cases, one Java class corresponds to two UNO types (e.g., * the Java class short[].class corresponds to both a sequence - * of SHORT and a sequence of UNSIGNED SHORT in + * of SHORT and a sequence of UNSIGNED SHORT in * UNO). In such ambiguous cases, the parameter alternative - * controls which UNO type is chosen:

    + * controls which UNO type is chosen: *