summaryrefslogtreecommitdiff
path: root/ridljar
diff options
context:
space:
mode:
authorDamjan Jovanovic <damjan@apache.org>2015-08-23 17:26:31 +0000
committerDamjan Jovanovic <damjan@apache.org>2015-08-23 17:26:31 +0000
commit01aadc965ca97f28505418c6fb95a0c4c1f0d160 (patch)
tree42b860e95e5b5c207a18366b934952b7faecb18b /ridljar
parent7678e87b129c0fbdaa397b7c103aeefc8891ab5e (diff)
Fix some of the many javadoc 8 errors.
Notes
Notes: prefer: 3a05aabe4190fc948ebdc94a14a15872f977ba0c
Diffstat (limited to 'ridljar')
-rw-r--r--ridljar/com/sun/star/uno/IMethodDescription.java4
-rw-r--r--ridljar/com/sun/star/uno/Type.java4
-rw-r--r--ridljar/com/sun/star/uno/Union.java2
3 files changed, 5 insertions, 5 deletions
diff --git a/ridljar/com/sun/star/uno/IMethodDescription.java b/ridljar/com/sun/star/uno/IMethodDescription.java
index f712556c8ad9..0c1aad59cd16 100644
--- a/ridljar/com/sun/star/uno/IMethodDescription.java
+++ b/ridljar/com/sun/star/uno/IMethodDescription.java
@@ -52,7 +52,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
@@ -60,7 +60,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/Type.java b/ridljar/com/sun/star/uno/Type.java
index f3a55f44096d..411db96c743a 100644
--- a/ridljar/com/sun/star/uno/Type.java
+++ b/ridljar/com/sun/star/uno/Type.java
@@ -33,7 +33,7 @@ import java.util.HashMap;
* SHORT</code>) do not have a matching Java class. For another, it can be
* necessary to describe a type which is unknown to the Java runtime system
* (for example, for delaying the need of a class, so that it is possible to
- * generate it on the fly.)</p>
+ * generate it on the fly.)
*
* <p>A <code>Type</code> is uniquely determined by its type class (a
* <code>TypeClass</code>) and its type name (a <code>String</code>); these two
@@ -204,7 +204,7 @@ 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>
* <ul>
diff --git a/ridljar/com/sun/star/uno/Union.java b/ridljar/com/sun/star/uno/Union.java
index 8c1822e4b846..ba1b2fee45ee 100644
--- a/ridljar/com/sun/star/uno/Union.java
+++ b/ridljar/com/sun/star/uno/Union.java
@@ -27,7 +27,7 @@ package com.sun.star.uno;
* The Union class is the base class for all classes generated
* as java binding for the IDL type union.
* <p>
- * Note: The idl type <code>union<code> is currently not fully
+ * Note: The idl type <code>union</code> is currently not fully
* integrated into the UNO framework, so don't use it.
*
* @version $Revision: 1.5 $ $ $Date: 2008-04-11 11:15:07 $