mirror of
https://github.com/apache/poi.git
synced 2025-02-20 17:06:47 +00:00
[github-346] Javadoc issues. Thanks to XenoAmess. This closes #346
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1902771 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5b78069b63
commit
feae2c8749
@ -87,7 +87,7 @@ public final class TestContentType {
|
||||
* Parameters are allowed, provides that they meet the
|
||||
* criteria of rule [01.2]
|
||||
* Invalid parameters are verified as incorrect in
|
||||
* {@link #testContentTypeParameterFailure()}
|
||||
* {@link #testContentTypeParameterFailure(String)}
|
||||
*/
|
||||
@ParameterizedTest
|
||||
@ValueSource(strings = {"mail/toto;titi=tata",
|
||||
|
@ -53,7 +53,7 @@ public class MemoryUsage {
|
||||
|
||||
/**
|
||||
* Generate a spreadsheet until OutOfMemoryError using low-level OOXML XmlBeans.
|
||||
* Similar to {@link #numberSpreadsheet(org.apache.poi.ss.usermodel.Workbook, int)}
|
||||
* Similar to {@link #testNumberHSSF(boolean)} (org.apache.poi.ss.usermodel.Workbook, int)}
|
||||
*
|
||||
* <p>
|
||||
*
|
||||
@ -171,12 +171,11 @@ public class MemoryUsage {
|
||||
* Generate a spreadsheet who's all cell values are numbers.
|
||||
* The data is generated until OutOfMemoryError.
|
||||
* <p>
|
||||
* as compared to {@link #mixedSpreadsheet(org.apache.poi.ss.usermodel.Workbook, int)},
|
||||
* as compared to {@link #testMixed},
|
||||
* this method does not set string values and, hence, does not involve the Shared Strings Table.
|
||||
* </p>
|
||||
*
|
||||
* @param wb the workbook to write to
|
||||
* @param numCols the number of columns in a row
|
||||
* @param useXSSF use XSSF as opposed to HSSF
|
||||
*/
|
||||
@ParameterizedTest
|
||||
@ValueSource(booleans = {false, true})
|
||||
|
@ -25,7 +25,7 @@ final class MutableFPNumber {
|
||||
// TODO - what about values between (10<sup>14</sup>-0.5) and (10<sup>14</sup>-0.05) ?
|
||||
/**
|
||||
* The minimum value in 'Base-10 normalised form'.<br>
|
||||
* When {@link #_binaryExponent} == 46 this is the minimum {@link #_frac} value
|
||||
* When {@link #_binaryExponent} == 46 this is the minimum {@link #_significand} value
|
||||
* (10<sup>14</sup>-0.05) * 2^17
|
||||
* <br>
|
||||
* Values between (10<sup>14</sup>-0.05) and 10<sup>14</sup> will be represented as '1'
|
||||
@ -37,7 +37,7 @@ final class MutableFPNumber {
|
||||
private static final BigInteger BI_MIN_BASE = new BigInteger("0B5E620F47FFFE666", 16);
|
||||
/**
|
||||
* For 'Base-10 normalised form'<br>
|
||||
* The maximum {@link #_frac} value when {@link #_binaryExponent} == 49
|
||||
* The maximum {@link #_significand} value when {@link #_binaryExponent} == 49
|
||||
* (10^15-0.5) * 2^14
|
||||
*/
|
||||
private static final BigInteger BI_MAX_BASE = new BigInteger("0E35FA9319FFFE000", 16);
|
||||
|
@ -132,8 +132,6 @@ public abstract class BaseTestExternalFunctions {
|
||||
|
||||
/**
|
||||
* test invoking saved ATP functions
|
||||
*
|
||||
* @param testFile either atp.xls or atp.xlsx
|
||||
*/
|
||||
@Test
|
||||
void baseTestInvokeATP() throws IOException {
|
||||
|
Loading…
x
Reference in New Issue
Block a user