]> source.dussan.org Git - poi.git/commitdiff
Javadoc warnings fixed:
authorAndreas Beeker <kiwiwings@apache.org>
Thu, 13 Nov 2014 00:30:48 +0000 (00:30 +0000)
committerAndreas Beeker <kiwiwings@apache.org>
Thu, 13 Nov 2014 00:30:48 +0000 (00:30 +0000)
Now that the javadocs are split, the reference from one module to another need to be url links

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1639217 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/POIOLE2TextExtractor.java
src/java/org/apache/poi/POITextExtractor.java
src/java/org/apache/poi/poifs/crypt/package.html
src/java/org/apache/poi/ss/formula/eval/forked/ForkedEvaluator.java
src/java/org/apache/poi/ss/usermodel/ClientAnchor.java
src/java/org/apache/poi/util/XMLHelper.java

index c0f4cbd1d741b9b755893c812dc90986f502a117..a42ced76f3c64a4b22d57e8a02f4593c7277ed91 100644 (file)
@@ -28,10 +28,10 @@ import org.apache.poi.poifs.filesystem.POIFSFileSystem;
  * You will typically find the implementation of
  *  a given format's text extractor under
  *  org.apache.poi.[format].extractor .
- * @see org.apache.poi.hssf.extractor.ExcelExtractor
- * @see org.apache.poi.hslf.extractor.PowerPointExtractor
- * @see org.apache.poi.hdgf.extractor.VisioTextExtractor
- * @see org.apache.poi.hwpf.extractor.WordExtractor
+ * @see <a href="https://poi.apache.org/apidocs/org/apache/poi/hssf/extractor/ExcelExtractor.html">org.apache.poi.hssf.extractor.ExcelExtractor</a>
+ * @see <a href="https://poi.apache.org/apidocs/org/apache/poi/hslf/extractor/PowerPointExtractor.html">org.apache.poi.hslf.extractor.PowerPointExtractor</a>
+ * @see <a href="https://poi.apache.org/apidocs/org/apache/poi/hdgf/extractor/VisioTextExtractor.html">org.apache.poi.hdgf.extractor.VisioTextExtractor</a>
+ * @see <a href="https://poi.apache.org/apidocs/org/apache/poi/hwpf/extractor/WordExtractor.html">org.apache.poi.hwpf.extractor.WordExtractor</a>
  */
 public abstract class POIOLE2TextExtractor extends POITextExtractor {
        /**
index e18078b461f4cec23dad0d137a13d661983d546c..7ea997c764b668bd4af8d3c68107620ce1ae38d1 100644 (file)
@@ -25,10 +25,10 @@ import java.io.IOException;
  * You will typically find the implementation of
  *  a given format's text extractor under
  *  org.apache.poi.[format].extractor .
- * @see org.apache.poi.hssf.extractor.ExcelExtractor
- * @see org.apache.poi.hslf.extractor.PowerPointExtractor
- * @see org.apache.poi.hdgf.extractor.VisioTextExtractor
- * @see org.apache.poi.hwpf.extractor.WordExtractor
+ * @see <a href="https://poi.apache.org/apidocs/org/apache/poi/hssf/extractor/ExcelExtractor.html">org.apache.poi.hssf.extractor.ExcelExtractor</a>
+ * @see <a href="https://poi.apache.org/apidocs/org/apache/poi/hslf/extractor/PowerPointExtractor.html">org.apache.poi.hslf.extractor.PowerPointExtractor</a>
+ * @see <a href="https://poi.apache.org/apidocs/org/apache/poi/hdgf/extractor/VisioTextExtractor.html">org.apache.poi.hdgf.extractor.VisioTextExtractor</a>
+ * @see <a href="https://poi.apache.org/apidocs/org/apache/poi/hwpf/extractor/WordExtractor.html">org.apache.poi.hwpf.extractor.WordExtractor</a>
  */
 public abstract class POITextExtractor implements Closeable {
        /** The POIDocument that's open */
index 977cf8b5a972005fa1ebd9a6973e1d5295f1b767..0cc2d4b67a807b5f1ce43dce8565558e9a1ed267 100644 (file)
@@ -27,7 +27,7 @@
 <ul>
 <li>This package contains common functions for both current implemented cipher modes.</li>
 <li>the {@link org.apache.poi.poifs.crypt.standard standard} package is part of the base poi jar and contains classes for the standard encryption ...</li>
-<li>the {@link org.apache.poi.poifs.crypt.agile agile} package is part of the poi ooxml jar and the provides agile encryption support.</li>
+<li>the <a href="https://poi.apache.org/apidocs/org/apache/poi/poifs/crypt/agile/package-summary.html">agile</a> package is part of the poi ooxml jar and the provides agile encryption support.</li>
 </ul>
 
 <h2>Related Documentation</h2>
@@ -39,6 +39,6 @@ Some implementations informations can be found under:
 
 <!-- Put @see and @since tags down here. -->
 @see org.apache.poi.poifs.crypt.standard
-@see org.apache.poi.poifs.crypt.agile
+@see <a href="https://poi.apache.org/apidocs/org/apache/poi/poifs/crypt/agile/package-summary.html">org.apache.poi.poifs.crypt.agile</a>
 </body>
 </html>
index 21fa5763840fb8870455f66adbe250bad4dcf8d2..8d0811d249df5b64535ce2b77c20e0df68fad1b8 100644 (file)
@@ -36,7 +36,7 @@ import org.apache.poi.ss.usermodel.Workbook;
 /**
  * An alternative workbook evaluator that saves memory in situations where a single workbook is
  * concurrently and independently evaluated many times.  With standard formula evaluation, around
- * 90% of memory consumption is due to loading of the {@link HSSFWorkbook} or {@link org.apache.poi.xssf.usermodel.XSSFWorkbook}.
+ * 90% of memory consumption is due to loading of the {@link HSSFWorkbook} or <a href="https://poi.apache.org/apidocs/org/apache/poi/xssf/usermodel/XSSFWorkbook.html">XSSFWorkbook</a>.
  * This class enables a 'master workbook' to be loaded just once and shared between many evaluation
  * clients.  Each evaluation client creates its own {@link ForkedEvaluator} and can set cell values
  * that will be used for local evaluations (and don't disturb evaluations on other evaluators).
index aa21e2150dda528df1395cece8657a416c8d387f..639fd0c89b981ad85992c2ff211bfada9a92c080 100644 (file)
@@ -123,7 +123,7 @@ public interface ClientAnchor {
      * 
      * Note - XSSF and HSSF have a slightly different coordinate
      *  system, values in XSSF are larger by a factor of
-     *  {@link org.apache.poi.xssf.usermodel.XSSFShape#EMU_PER_PIXEL}
+     *  {@link org.apache.poi.util.Units#EMU_PER_PIXEL}
      *
      * @return the x coordinate within the first cell
      */
@@ -134,7 +134,7 @@ public interface ClientAnchor {
      *
      * Note - XSSF and HSSF have a slightly different coordinate
      *  system, values in XSSF are larger by a factor of
-     *  {@link org.apache.poi.xssf.usermodel.XSSFShape#EMU_PER_PIXEL}
+     *  {@link org.apache.poi.util.Units#EMU_PER_PIXEL}
      *
      * @param dx1 the x coordinate within the first cell
      */
@@ -145,7 +145,7 @@ public interface ClientAnchor {
      *
      * Note - XSSF and HSSF have a slightly different coordinate
      *  system, values in XSSF are larger by a factor of
-     *  {@link org.apache.poi.xssf.usermodel.XSSFShape#EMU_PER_PIXEL}
+     *  {@link org.apache.poi.util.Units#EMU_PER_PIXEL}
      *
      * @return the y coordinate within the first cell
      */
@@ -156,7 +156,7 @@ public interface ClientAnchor {
      *
      * Note - XSSF and HSSF have a slightly different coordinate
      *  system, values in XSSF are larger by a factor of
-     *  {@link org.apache.poi.xssf.usermodel.XSSFShape#EMU_PER_PIXEL}
+     *  {@link org.apache.poi.util.Units#EMU_PER_PIXEL}
      *
      * @param dy1 the y coordinate within the first cell
      */
@@ -167,7 +167,7 @@ public interface ClientAnchor {
      *
      * Note - XSSF and HSSF have a slightly different coordinate
      *  system, values in XSSF are larger by a factor of
-     *  {@link org.apache.poi.xssf.usermodel.XSSFShape#EMU_PER_PIXEL}
+     *  {@link org.apache.poi.util.Units#EMU_PER_PIXEL}
      *
      * @return the y coordinate within the second cell
      */
@@ -178,7 +178,7 @@ public interface ClientAnchor {
      *
      * Note - XSSF and HSSF have a slightly different coordinate
      *  system, values in XSSF are larger by a factor of
-     *  {@link org.apache.poi.xssf.usermodel.XSSFShape#EMU_PER_PIXEL}
+     *  {@link org.apache.poi.util.Units#EMU_PER_PIXEL}
      *
      * @param dy2 the y coordinate within the second cell
      */
@@ -189,7 +189,7 @@ public interface ClientAnchor {
      *
      * Note - XSSF and HSSF have a slightly different coordinate
      *  system, values in XSSF are larger by a factor of
-     *  {@link org.apache.poi.xssf.usermodel.XSSFShape#EMU_PER_PIXEL}
+     *  {@link org.apache.poi.util.Units#EMU_PER_PIXEL}
      *
      * @return the x coordinate within the second cell
      */
@@ -200,7 +200,7 @@ public interface ClientAnchor {
      *
      * Note - XSSF and HSSF have a slightly different coordinate
      *  system, values in XSSF are larger by a factor of
-     *  {@link org.apache.poi.xssf.usermodel.XSSFShape#EMU_PER_PIXEL}
+     *  {@link org.apache.poi.util.Units#EMU_PER_PIXEL}
      *
      * @param dx2 the x coordinate within the second cell
      */
index 3e97cee0b31be0b9402681b1a9a375f7fc2d5621..ac617adda89ec8d160a8bdda8dc18d6bc2ed5f42 100644 (file)
@@ -22,7 +22,7 @@ import javax.xml.parsers.DocumentBuilderFactory;
 
 /**
  * Helper methods for working with javax.xml classes.
- * @see SAXHelper
+ * @see <a href="https://poi.apache.org/apidocs/org/apache/poi/util/SAXHelper.html">org.apache.poi.util.SAXHelper</a>
  */
 public final class XMLHelper
 {