Author: damjan
Date: Sun Aug 23 17:26:31 2015
New Revision: 1697228

URL: http://svn.apache.org/r1697228
Log:
Fix some of the many javadoc 8 errors.


Modified:
    openoffice/trunk/main/javaunohelper/com/sun/star/comp/helper/Bootstrap.java
    openoffice/trunk/main/ridljar/com/sun/star/uno/IMethodDescription.java
    openoffice/trunk/main/ridljar/com/sun/star/uno/Type.java
    openoffice/trunk/main/ridljar/com/sun/star/uno/Union.java
    
openoffice/trunk/main/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/ExtendedFormat.java
    
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/Convert.java
    
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/DocumentDeserializer.java
    
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PdbDecoder.java
    
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/ColumnStyle.java
    
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/merger/MergeAlgorithm.java
    
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/merger/NodeMergeAlgorithm.java
    
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/merger/diff/TextNodeIterator.java

Modified: 
openoffice/trunk/main/javaunohelper/com/sun/star/comp/helper/Bootstrap.java
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/javaunohelper/com/sun/star/comp/helper/Bootstrap.java?rev=1697228&r1=1697227&r2=1697228&view=diff
==============================================================================
--- openoffice/trunk/main/javaunohelper/com/sun/star/comp/helper/Bootstrap.java 
(original)
+++ openoffice/trunk/main/javaunohelper/com/sun/star/comp/helper/Bootstrap.java 
Sun Aug 23 17:26:31 2015
@@ -97,6 +97,7 @@ public class Bootstrap {
                @param context_entries the hash table contains mappings of 
entry names (type string) to
                context entries (type class ComponentContextEntry).
                @return a new context.
+               @throws java.lang.Exception
     */
        static public XComponentContext createInitialComponentContext( 
Hashtable context_entries )
         throws Exception
@@ -149,6 +150,7 @@ public class Bootstrap {
         * <p>
         * @return     a freshly boostrapped service manager
         * @see        com.sun.star.lang.ServiceManager
+        * @throws      java.lang.Exception
         */
        static public XMultiServiceFactory createSimpleServiceManager() throws 
Exception
     {
@@ -157,10 +159,12 @@ public class Bootstrap {
     }
     
     
-    /** Bootstraps the initial component context from a native UNO 
installation.
-        
-        @see cppuhelper/defaultBootstrap_InitialComponentContext()
-    */
+    /**
+     * Bootstraps the initial component context from a native UNO installation.
+     * <p>
+     * @return
+     * @see cppuhelper/defaultBootstrap_InitialComponentContext()
+     */
     static public final XComponentContext 
defaultBootstrap_InitialComponentContext()
         throws Exception
     {

Modified: openoffice/trunk/main/ridljar/com/sun/star/uno/IMethodDescription.java
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/ridljar/com/sun/star/uno/IMethodDescription.java?rev=1697228&r1=1697227&r2=1697228&view=diff
==============================================================================
--- openoffice/trunk/main/ridljar/com/sun/star/uno/IMethodDescription.java 
(original)
+++ openoffice/trunk/main/ridljar/com/sun/star/uno/IMethodDescription.java Sun 
Aug 23 17:26:31 2015
@@ -52,7 +52,7 @@ public interface IMethodDescription exte
        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 exte
        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

Modified: openoffice/trunk/main/ridljar/com/sun/star/uno/Type.java
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/ridljar/com/sun/star/uno/Type.java?rev=1697228&r1=1697227&r2=1697228&view=diff
==============================================================================
--- openoffice/trunk/main/ridljar/com/sun/star/uno/Type.java (original)
+++ openoffice/trunk/main/ridljar/com/sun/star/uno/Type.java Sun Aug 23 
17:26:31 2015
@@ -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>

Modified: openoffice/trunk/main/ridljar/com/sun/star/uno/Union.java
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/ridljar/com/sun/star/uno/Union.java?rev=1697228&r1=1697227&r2=1697228&view=diff
==============================================================================
--- openoffice/trunk/main/ridljar/com/sun/star/uno/Union.java (original)
+++ openoffice/trunk/main/ridljar/com/sun/star/uno/Union.java Sun Aug 23 
17:26:31 2015
@@ -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 $

Modified: 
openoffice/trunk/main/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/ExtendedFormat.java
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/ExtendedFormat.java?rev=1697228&r1=1697227&r2=1697228&view=diff
==============================================================================
--- 
openoffice/trunk/main/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/ExtendedFormat.java
 (original)
+++ 
openoffice/trunk/main/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/ExtendedFormat.java
 Sun Aug 23 17:26:31 2015
@@ -352,7 +352,7 @@ org.openoffice.xmerge.converter.xml.Offi
     }
     
        /**
-        * Writes the ExtendedFormat to the <code>Outputstream<code> 
+        * Writes the ExtendedFormat to the <code>Outputstream</code> 
         *
         * @param       output the <code>Outputstream</code>to write to 
         */

Modified: 
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/Convert.java
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/Convert.java?rev=1697228&r1=1697227&r2=1697228&view=diff
==============================================================================
--- 
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/Convert.java
 (original)
+++ 
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/Convert.java
 Sun Aug 23 17:26:31 2015
@@ -161,7 +161,7 @@ public class Convert implements Cloneabl
     
     /** 
      *  Clones a Convert object so another Convert object can 
-     *  do the same conversion.  <code>InputStream<code> objects passed
+     *  do the same conversion.  <code>InputStream</code> objects passed
      *  in via calls to the <code>addInputStream</code> method are not
      *  copied.
      *

Modified: 
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/DocumentDeserializer.java
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/DocumentDeserializer.java?rev=1697228&r1=1697227&r2=1697228&view=diff
==============================================================================
--- 
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/DocumentDeserializer.java
 (original)
+++ 
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/DocumentDeserializer.java
 Sun Aug 23 17:26:31 2015
@@ -28,13 +28,13 @@ import java.io.IOException;
 /**
  *  <p>A <code>DocumentDeserializer</code> represents a converter that
  *  converts &quot;Device&quot; <code>Document</code> objects into the
- *  &quot;Office&quot; <code>Document</code> format.</p>
+ *  &quot;Office&quot; <code>Document</code> format.
  *
  *  <p>The <code>DocumentDeserializer</code> object is created by
- *  the </code>PluginFactory</code> {@link
+ *  the <code>PluginFactory</code> {@link
  *  
org.openoffice.xmerge.DocumentDeserializerFactory#createDocumentDeserializer
  *  createDocumentDeserializer} method.  When it is constructed, a
- *  <code>ConvertData</code> object is passed in to be used as input.</p> 
+ *  <code>ConvertData</code> object is passed in to be used as input.
  *
  *  @author  Herbie Ong
  *  @see     org.openoffice.xmerge.PluginFactory

Modified: 
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PdbDecoder.java
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PdbDecoder.java?rev=1697228&r1=1697227&r2=1697228&view=diff
==============================================================================
--- 
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PdbDecoder.java
 (original)
+++ 
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PdbDecoder.java
 Sun Aug 23 17:26:31 2015
@@ -31,16 +31,16 @@ import java.io.DataInputStream;
 /**
  *  <p>Provides functionality to decode a PDB formatted file into
  *  a <code>PalmDB</code> object given an <code>InputStream</code>.
- *  This class is only used by the <code>PalmDB</code> object.</p>
+ *  This class is only used by the <code>PalmDB</code> object.
  *
- *  <p>Sample usage:</p>
+ *  <p>Sample usage:
  *
  *  <blockquote><pre><code>
  *     PdbDecoder decoder = new PdbDecoder("sample.pdb");
  *     PalmDB palmDB = decoder.parse();
  *  </code></pre></blockquote>
  *
- *  <p>This decoder has the following assumptions on the PDB file:</p>
+ *  <p>This decoder has the following assumptions on the PDB file:
  *
  *  <p><ol>
  *  <li>There is only one RecordList section in the PDB.</li>
@@ -50,9 +50,9 @@ import java.io.DataInputStream;
  *  <li>The raw <code>Record</code> in the <code>Record</code> section
  *      are sorted as well in order, i.e. first <code>Record</code>
  *      comes ahead of second <code>Record</code>, etc.</li>
- *  </ol></p>
+ *  </ol>
  *
- *  <p>Other decoders assume these as well.</p>
+ *  <p>Other decoders assume these as well.
  *
  *  @author  Herbie Ong
  *  @see     PalmDB

Modified: 
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/ColumnStyle.java
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/ColumnStyle.java?rev=1697228&r1=1697227&r2=1697228&view=diff
==============================================================================
--- 
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/ColumnStyle.java
 (original)
+++ 
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/ColumnStyle.java
 Sun Aug 23 17:26:31 2015
@@ -44,7 +44,7 @@ public class ColumnStyle extends Style i
     /**
      *  Constructor for use when going from DOM to client device format.
      *
-     *  @param  Node  The <i>style:style</i> <code>Node</code> containing
+     *  @param  node  The <i>style:style</i> <code>Node</code> containing
      *                the <code>Style</code>.  (This <code>Node</code> is
      *                assumed have a <i>family</i> attribute of <i>text</i>).
      *  @param  sc    The <code>StyleCatalog</code>, which is used for
@@ -97,7 +97,7 @@ public class ColumnStyle extends Style i
      *                   <i>text</i>).  Can be null.
      *  @param  parent   Name of parent text <code>Style</code>, or null
      *                   for none.
-     *  @param  mask     the width of this column 
+     *  @param  colWidth the width of this column 
      *  @param sc        The <code>StyleCatalog</code>, which is used for
      *                   looking up ancestor <code>Style</code> objects.
      */

Modified: 
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/merger/MergeAlgorithm.java
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/merger/MergeAlgorithm.java?rev=1697228&r1=1697227&r2=1697228&view=diff
==============================================================================
--- 
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/merger/MergeAlgorithm.java
 (original)
+++ 
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/merger/MergeAlgorithm.java
 Sun Aug 23 17:26:31 2015
@@ -40,7 +40,7 @@ public interface MergeAlgorithm {
      *  This method is to merge the difference to an <code>Iterator</code>.
      *  The original <code>Iterator</code> will be modified after the call.
      *
-     *  @param  objSeq       The original sequence which the difference
+     *  @param  orgSeq       The original sequence which the difference
      *                       will be applied.  It will be modified.
      *  @param  modSeq       The modified sequence where the difference
      *                       content will be extracted.

Modified: 
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/merger/NodeMergeAlgorithm.java
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/merger/NodeMergeAlgorithm.java?rev=1697228&r1=1697227&r2=1697228&view=diff
==============================================================================
--- 
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/merger/NodeMergeAlgorithm.java
 (original)
+++ 
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/merger/NodeMergeAlgorithm.java
 Sun Aug 23 17:26:31 2015
@@ -43,6 +43,6 @@ public interface NodeMergeAlgorithm {
      *  @param  modifyNode    The <code>Node</code> to be merged.  It may
      *                        be modified.
      */
-    public void merge(Node orginialNode, Node modifyNode);
+    public void merge(Node orginalNode, Node modifyNode);
 }
 

Modified: 
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/merger/diff/TextNodeIterator.java
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/merger/diff/TextNodeIterator.java?rev=1697228&r1=1697227&r2=1697228&view=diff
==============================================================================
--- 
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/merger/diff/TextNodeIterator.java
 (original)
+++ 
openoffice/trunk/main/xmerge/source/xmerge/java/org/openoffice/xmerge/merger/diff/TextNodeIterator.java
 Sun Aug 23 17:26:31 2015
@@ -48,7 +48,7 @@ public final class TextNodeIterator exte
     /**
      *  Standard constructor.
      *
-     *  @param  initial  The initial root <code>Node</code>.
+     *  @param  node  The initial root <code>Node</code>.
      */
     public TextNodeIterator(Node node) {
         super(null, node);


Reply via email to