Index: applications/editors/josm/plugins/opendata/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- applications/editors/josm/plugins/opendata/.settings/org.eclipse.jdt.core.prefs	(revision 34151)
+++ applications/editors/josm/plugins/opendata/.settings/org.eclipse.jdt.core.prefs	(revision 34152)
@@ -45,5 +45,5 @@
 org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsDeprecatedRef=enabled
 org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsNotVisibleRef=enabled
-org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsVisibility=public
+org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsVisibility=private
 org.eclipse.jdt.core.compiler.problem.localVariableHiding=ignore
 org.eclipse.jdt.core.compiler.problem.methodWithConstructorName=warning
Index: applications/editors/josm/plugins/opendata/includes/org/apache/poi/hpsf/Section.java
===================================================================
--- applications/editors/josm/plugins/opendata/includes/org/apache/poi/hpsf/Section.java	(revision 34151)
+++ applications/editors/josm/plugins/opendata/includes/org/apache/poi/hpsf/Section.java	(revision 34152)
@@ -363,5 +363,5 @@
      * <p>Returns the value of the numeric property with the specified
      * ID. If the property is not available, 0 is returned. A
-     * subsequent call to {@link #wasNull} will return
+     * subsequent call to {@code #wasNull} will return
      * <code>true</code> to let the caller distinguish that case from
      * a real property value of 0.</p>
@@ -390,5 +390,5 @@
      * <p>Returns the value of the boolean property with the specified
      * ID. If the property is not available, <code>false</code> is
-     * returned. A subsequent call to {@link #wasNull} will return
+     * returned. A subsequent call to {@code #wasNull} will return
      * <code>true</code> to let the caller distinguish that case from
      * a real property value of <code>false</code>.</p>
Index: applications/editors/josm/plugins/opendata/includes/org/apache/poi/hssf/record/HyperlinkRecord.java
===================================================================
--- applications/editors/josm/plugins/opendata/includes/org/apache/poi/hssf/record/HyperlinkRecord.java	(revision 34151)
+++ applications/editors/josm/plugins/opendata/includes/org/apache/poi/hssf/record/HyperlinkRecord.java	(revision 34152)
@@ -129,5 +129,5 @@
 		/**
 		 * Read a GUID in standard text form e.g.<br/>
-		 * 13579BDF-0246-8ACE-0123-456789ABCDEF 
+		 * 13579BDF-0246-8ACE-0123-456789ABCDEF
 		 * <br/> -&gt; <br/>
 		 *  0x13579BDF, 0x0246, 0x8ACE 0x0123456789ABCDEF
@@ -188,5 +188,5 @@
      static final int  HLINK_URL    = 0x01;  // File link or URL.
      static final int  HLINK_LABEL  = 0x14;  // Has label/description.
-    /** Place in worksheet. If set, the {@link #_textMark} field will be present */
+    /** Place in worksheet. If set, the {@code #_textMark} field will be present */
      static final int  HLINK_PLACE  = 0x08;
     private static final int  HLINK_TARGET_FRAME  = 0x80;  // has 'target frame'
@@ -197,5 +197,5 @@
      final static GUID FILE_MONIKER = GUID.parse("00000303-0000-0000-C000-000000000046");
     /** expected Tail of a URL link */
-    private final static byte[] URL_TAIL  = HexRead.readFromString("79 58 81 F4  3B 1D 7F 48   AF 2C 82 5D  C4 85 27 63   00 00 00 00  A5 AB 00 00"); 
+    private final static byte[] URL_TAIL  = HexRead.readFromString("79 58 81 F4  3B 1D 7F 48   AF 2C 82 5D  C4 85 27 63   00 00 00 00  A5 AB 00 00");
     /** expected Tail of a file link */
     private final static byte[] FILE_TAIL = HexRead.readFromString("FF FF AD DE  00 00 00 00   00 00 00 00  00 00 00 00   00 00 00 00  00 00 00 00");
@@ -229,5 +229,5 @@
      */
     private String _textMark;
-    
+
     private byte[] _uninterpretedTail;
 
@@ -388,4 +388,5 @@
     }
 
+    @Override
     public void serialize(LittleEndianOutput out) {
         _range.serialize(out);
@@ -442,4 +443,5 @@
     }
 
+    @Override
     protected int getDataSize() {
         int size = 0;
@@ -498,4 +500,5 @@
     }
 
+    @Override
     public short getSid() {
         return HyperlinkRecord.sid;
@@ -503,4 +506,5 @@
 
 
+    @Override
     public String toString() {
         StringBuffer buffer = new StringBuffer();
@@ -526,4 +530,5 @@
 
 
+    @Override
     public Object clone() {
         HyperlinkRecord rec = new HyperlinkRecord();
Index: applications/editors/josm/plugins/opendata/includes/org/apache/poi/hssf/usermodel/HSSFCell.java
===================================================================
--- applications/editors/josm/plugins/opendata/includes/org/apache/poi/hssf/usermodel/HSSFCell.java	(revision 34151)
+++ applications/editors/josm/plugins/opendata/includes/org/apache/poi/hssf/usermodel/HSSFCell.java	(revision 34152)
@@ -105,5 +105,4 @@
      *                CELL_TYPE_BOOLEAN, CELL_TYPE_ERROR
      *                Type of cell
-     * @see org.apache.poi.hssf.usermodel.HSSFRow#createCell(short,int)
      */
     protected HSSFCell(HSSFWorkbook book, HSSFSheet sheet, int row, short col,
@@ -716,9 +715,4 @@
      *
      * @see #setCellType(int)
-     * @see #setCellFormula(String)
-     * @see HSSFRow#removeCell(org.apache.poi.ss.usermodel.Cell)
-     * @see org.apache.poi.hssf.usermodel.HSSFSheet#removeRow(org.apache.poi.ss.usermodel.Row)
-     * @see org.apache.poi.hssf.usermodel.HSSFSheet#shiftRows(int, int, int)
-     * @see org.apache.poi.hssf.usermodel.HSSFSheet#addMergedRegion(org.apache.poi.ss.util.CellRangeAddress)
      * @throws IllegalStateException if modification is not allowed
      */
Index: applications/editors/josm/plugins/opendata/includes/org/apache/poi/hssf/usermodel/HSSFName.java
===================================================================
--- applications/editors/josm/plugins/opendata/includes/org/apache/poi/hssf/usermodel/HSSFName.java	(revision 34151)
+++ applications/editors/josm/plugins/opendata/includes/org/apache/poi/hssf/usermodel/HSSFName.java	(revision 34152)
@@ -29,9 +29,8 @@
     private NameRecord _definedNameRec;
 
-    /** 
+    /**
      * Creates new HSSFName   - called by HSSFWorkbook to create a name from
      * scratch.
      *
-     * @see org.apache.poi.hssf.usermodel.HSSFWorkbook#createName()
      * @param name the Name Record
      * @param book workbook object associated with the sheet.
@@ -42,4 +41,5 @@
 
 
+    @Override
     public String toString() {
         StringBuffer sb = new StringBuffer(64);
Index: applications/editors/josm/plugins/opendata/includes/org/apache/poi/hssf/usermodel/HSSFSheet.java
===================================================================
--- applications/editors/josm/plugins/opendata/includes/org/apache/poi/hssf/usermodel/HSSFSheet.java	(revision 34151)
+++ applications/editors/josm/plugins/opendata/includes/org/apache/poi/hssf/usermodel/HSSFSheet.java	(revision 34152)
@@ -69,5 +69,4 @@
      * @param workbook - The HSSF Workbook object associated with the sheet.
      * @param sheet - lowlevel Sheet object this sheet will represent
-     * @see org.apache.poi.hssf.usermodel.HSSFWorkbook#createSheet()
      */
     protected HSSFSheet(HSSFWorkbook workbook, InternalSheet sheet) {
Index: applications/editors/josm/plugins/opendata/includes/org/apache/poi/ss/util/MutableFPNumber.java
===================================================================
--- applications/editors/josm/plugins/opendata/includes/org/apache/poi/ss/util/MutableFPNumber.java	(revision 34151)
+++ applications/editors/josm/plugins/opendata/includes/org/apache/poi/ss/util/MutableFPNumber.java	(revision 34152)
@@ -26,5 +26,5 @@
 	/**
 	 * The minimum value in 'Base-10 normalised form'.<br/>
-	 * When {@link #_binaryExponent} == 46 this is the the minimum {@link #_frac} value
+	 * When {@link #_binaryExponent} == 46 this is the the minimum {@code #_frac} value
 	 *  (10<sup>14</sup>-0.05) * 2^17
 	 *  <br/>
@@ -38,5 +38,5 @@
 	/**
 	 * For 'Base-10 normalised form'<br/>
-	 * The maximum {@link #_frac} value when {@link #_binaryExponent} == 49
+	 * The maximum {@code #_frac} value when {@link #_binaryExponent} == 49
 	 * (10^15-0.5) * 2^14
 	 */
Index: applications/editors/josm/plugins/opendata/includes/org/jopendocument/dom/ChildCreator.java
===================================================================
--- applications/editors/josm/plugins/opendata/includes/org/jopendocument/dom/ChildCreator.java	(revision 34151)
+++ applications/editors/josm/plugins/opendata/includes/org/jopendocument/dom/ChildCreator.java	(revision 34152)
@@ -1,15 +1,15 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
- * 
+ *
  * Copyright 2008 jOpenDocument, by ILM Informatique. All rights reserved.
- * 
+ *
  * The contents of this file are subject to the terms of the GNU
- * General Public License Version 3 only ("GPL").  
- * You may not use this file except in compliance with the License. 
+ * General Public License Version 3 only ("GPL").
+ * You may not use this file except in compliance with the License.
  * You can obtain a copy of the License at http://www.gnu.org/licenses/gpl-3.0.html
  * See the License for the specific language governing permissions and limitations under the License.
- * 
+ *
  * When distributing the software, include this License Header Notice in each file.
- * 
+ *
  */
 
@@ -25,5 +25,5 @@
 /**
  * A helper to create children in the schema order.
- * 
+ *
  * @author Sylvain CUAZ
  */
@@ -65,8 +65,7 @@
     /**
      * Trouve l'index ou il faut insérer le fils dans ce document.
-     * 
+     *
      * @param childName le nom du fils que l'on veut insérer.
      * @return l'index ou il faut l'insérer (s'il est déjà présent son index actuel +1).
-     * @throws IllegalArgumentException if childName is not in {@link #getChildren()}.
      */
     @SuppressWarnings("unchecked")
@@ -94,5 +93,5 @@
     /**
      * Insère cet élément à la bonne place. The child should not be already present.
-     * 
+     *
      * @param child l'élément à insérer, doit être dans TOP_ELEMENTS.
      */
@@ -105,5 +104,5 @@
     /**
      * Return the asked child, optionally creating it.
-     * 
+     *
      * @param childNS the namespace of the child.
      * @param childName the name of the child.
