mirror of https://github.com/apache/poi.git
Javadoc warnings fixed:
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
This commit is contained in:
parent
7b6f10e705
commit
74941e32fb
|
@ -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 {
|
||||
/**
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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).
|
||||
|
|
|
@ -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
|
||||
*/
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue