From commits-return-11859-archive-asf-public=cust-asf.ponee.io@poi.apache.org Tue Dec 4 00:51:22 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id A23AB18067E for ; Tue, 4 Dec 2018 00:51:19 +0100 (CET) Received: (qmail 73964 invoked by uid 500); 3 Dec 2018 23:51:18 -0000 Mailing-List: contact commits-help@poi.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@poi.apache.org Delivered-To: mailing list commits@poi.apache.org Received: (qmail 73872 invoked by uid 99); 3 Dec 2018 23:51:18 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Dec 2018 23:51:18 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 9B8CE3A2687 for ; Mon, 3 Dec 2018 23:51:17 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1848113 [3/13] - in /poi/site/publish: ./ apidocs/4.0/ apidocs/4.0/org/apache/poi/ apidocs/4.0/org/apache/poi/common/usermodel/fonts/ apidocs/4.0/org/apache/poi/extractor/ apidocs/4.0/org/apache/poi/hpsf/ apidocs/4.0/org/apache/poi/hpsf/cl... Date: Mon, 03 Dec 2018 23:51:14 -0000 To: commits@poi.apache.org From: kiwiwings@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20181203235117.9B8CE3A2687@svn01-us-west.apache.org> Modified: poi/site/publish/apidocs/4.0/org/apache/poi/POIDocument.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/POIDocument.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/POIDocument.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/POIDocument.html Mon Dec 3 23:51:13 2018 @@ -427,7 +427,7 @@ implements java.io.Closeable
Returns:
The value of the given property or null if it wasn't found.
Throws:
-
java.io.IOException
+
java.io.IOException - If retrieving properties fails
@@ -449,7 +449,7 @@ implements java.io.Closeable
Returns:
The value of the given property or null if it wasn't found.
Throws:
-
java.io.IOException
+
java.io.IOException - If retrieving properties fails
@@ -701,7 +701,7 @@ protected void replaceDirector
Returns:
the encryption info if the document is encrypted, otherwise null
Throws:
-
java.io.IOException
+
java.io.IOException - If retrieving the encryption information fails
Modified: poi/site/publish/apidocs/4.0/org/apache/poi/common/usermodel/fonts/FontFamily.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/common/usermodel/fonts/FontFamily.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/common/usermodel/fonts/FontFamily.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/common/usermodel/fonts/FontFamily.html Mon Dec 3 23:51:13 2018 @@ -383,6 +383,12 @@ not permitted.)

valueOfPitchFamily

public static FontFamily valueOfPitchFamily(byte pitchAndFamily)
Get FontFamily from combined native id
+
+
Parameters:
+
pitchAndFamily - The PitchFamily to decode.
+
Returns:
+
The resulting FontFamily
+
Modified: poi/site/publish/apidocs/4.0/org/apache/poi/common/usermodel/fonts/FontPitch.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/common/usermodel/fonts/FontPitch.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/common/usermodel/fonts/FontPitch.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/common/usermodel/fonts/FontPitch.html Mon Dec 3 23:51:13 2018 @@ -347,6 +347,11 @@ not permitted.) FontFamily family)
Combine pitch and family to native id
+
Parameters:
+
pitch - The pitch-value, cannot be null
+
family - The family-value, cannot be null
+
Returns:
+
The resulting combined byte-value with pitch and family encoded into one byte
See Also:
LOGFONT structure
@@ -360,6 +365,12 @@ not permitted.)

valueOfPitchFamily

public static FontPitch valueOfPitchFamily(byte pitchAndFamily)
Get FontPitch from native id
+
+
Parameters:
+
pitchAndFamily - The combined byte value for pitch and family
+
Returns:
+
The resulting FontPitch enumeration value
+
Modified: poi/site/publish/apidocs/4.0/org/apache/poi/extractor/OLE2ExtractorFactory.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/extractor/OLE2ExtractorFactory.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/extractor/OLE2ExtractorFactory.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/extractor/OLE2ExtractorFactory.html Mon Dec 3 23:51:13 2018 @@ -228,6 +228,10 @@ extends java.lang.Object
Should this thread prefer event based over usermodel based extractors? (usermodel extractors tend to be more accurate, but use more memory) Default is false.
+
+
Returns:
+
true if event extractors should be preferred in the current thread, fals otherwise.
+
@@ -240,6 +244,10 @@ extends java.lang.Object
Should all threads prefer event based over usermodel based extractors? (usermodel extractors tend to be more accurate, but use more memory) Default is to use the thread level setting, which defaults to false.
+
+
Returns:
+
true if event extractors should be preferred in all threads, fals otherwise.
+
@@ -251,6 +259,10 @@ extends java.lang.Object
public static void setThreadPrefersEventExtractors(boolean preferEventExtractors)
Should this thread prefer event based over usermodel based extractors? Will only be used if the All Threads setting is null.
+
+
Parameters:
+
preferEventExtractors - If this threads should prefer event based extractors.
+
@@ -262,6 +274,10 @@ extends java.lang.Object
public static void setAllThreadsPreferEventExtractors(java.lang.Boolean preferEventExtractors)
Should all threads prefer event based over usermodel based extractors? If set, will take preference over the Thread level setting.
+
+
Parameters:
+
preferEventExtractors - If all threads should prefer event based extractors.
+
@@ -273,6 +289,10 @@ extends java.lang.Object
public static boolean getPreferEventExtractor()
Should this thread use event based extractors is available? Checks the all-threads one first, then thread specific.
+
+
Returns:
+
If the current thread should use event based extractors.
+
@@ -315,8 +335,16 @@ extends java.lang.Object Note that this won't check for embedded OOXML resources either, use ExtractorFactory for that.
+
Parameters:
+
poifsDir - The DirectoryNode pointing to a document.
+
Returns:
+
The resulting POITextExtractor, an exception is thrown if + no TextExtractor can be created for some reason.
Throws:
-
java.io.IOException
+
java.io.IOException - If converting the DirectoryNode into a HSSFWorkbook fails
+
OldFileFormatException - If the DirectoryNode points to a format of + an unsupported version of Excel.
+
java.lang.IllegalArgumentException - If creating the Extractor fails
@@ -334,8 +362,15 @@ extends java.lang.Object empty array. Otherwise, you'll get one open POITextExtractor for each embedded file.
+
Parameters:
+
ext - The extractor to look at for embedded documents
+
Returns:
+
An array of resulting extractors. Empty if no embedded documents are found.
Throws:
-
java.io.IOException
+
java.io.IOException - If converting the DirectoryNode into a HSSFWorkbook fails
+
OldFileFormatException - If the DirectoryNode points to a format of + an unsupported version of Excel.
+
java.lang.IllegalArgumentException - If creating the Extractor fails
Modified: poi/site/publish/apidocs/4.0/org/apache/poi/hpsf/Property.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/hpsf/Property.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/hpsf/Property.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/hpsf/Property.html Mon Dec 3 23:51:13 2018 @@ -242,7 +242,7 @@ extends java.lang.Object protected int -getSize(int codepage) +getSize(int property)
Returns the property's size in bytes.
@@ -536,10 +536,12 @@ extends java.lang.Object @@ -417,7 +421,7 @@ implements -
    +
    • POWERPOINT_DOCUMENT

      public static final java.lang.String POWERPOINT_DOCUMENT
      @@ -428,6 +432,19 @@ implements + + +
        +
      • +

        PP95_DOCUMENT

        +
        public static final java.lang.String PP95_DOCUMENT
        +
        +
        See Also:
        +
        Constant Field Values
        +
        +
      • +
    Modified: poi/site/publish/apidocs/4.0/org/apache/poi/hssf/model/InternalWorkbook.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/hssf/model/InternalWorkbook.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/hssf/model/InternalWorkbook.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/hssf/model/InternalWorkbook.html Mon Dec 3 23:51:13 2018 @@ -2076,6 +2076,10 @@ extends java.lang.Object
    @Internal
     public WorkbookRecordList getWorkbookRecordList()
    Only for internal calls - code based on this is not supported ...
    +
    +
    Returns:
    +
    The list of records.
    +
Modified: poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/RecordInputStream.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/RecordInputStream.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/RecordInputStream.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/RecordInputStream.html Mon Dec 3 23:51:13 2018 @@ -115,8 +115,9 @@ var activeTableTab = "activeTableTab";
public final class RecordInputStream
 extends java.lang.Object
 implements LittleEndianInput
-
Title: Record Input Stream

- Description: Wraps a stream and provides helper methods for the construction of records.

+
Title: Record Input Stream + + Description: Wraps a stream and provides helper methods for the construction of records.
Modified: poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/SSTRecord.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/SSTRecord.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/SSTRecord.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/SSTRecord.html Mon Dec 3 23:51:13 2018 @@ -323,7 +323,7 @@ extends -

+

The string_flag is bit mapped as follows: -

+

@@ -395,7 +395,7 @@ extends Parameters: -
in - the RecordInputstream to read the record from
+
in - the RecordInputStream to read the record from
Modified: poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/SharedFormulaRecord.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/SharedFormulaRecord.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/SharedFormulaRecord.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/SharedFormulaRecord.html Mon Dec 3 23:51:13 2018 @@ -209,7 +209,9 @@ extends
- + @@ -389,7 +391,10 @@ extends

getFormulaTokens

public Ptg[] getFormulaTokens(FormulaRecord formula)
+
Convert formula into an array of Ptg tokens.
+
Parameters:
+
formula - The record to break into tokens, cannot be null
Returns:
the equivalent Ptg array that the formula would have, were it not shared.
Modified: poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/SharedValueRecordBase.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/SharedValueRecordBase.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/SharedValueRecordBase.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/SharedValueRecordBase.html Mon Dec 3 23:51:13 2018 @@ -288,6 +288,10 @@ extends LittleEndianInput in)
reads only the range (1 CellRangeAddress8Bit) from the stream
+
+
Parameters:
+
in - The interface for reading the record data.
+
Modified: poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/class-use/FormulaRecord.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/class-use/FormulaRecord.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/class-use/FormulaRecord.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/class-use/FormulaRecord.html Mon Dec 3 23:51:13 2018 @@ -150,7 +150,9 @@ - +
Bit numberPtg[]getFormulaTokens(FormulaRecord formula) getFormulaTokens(FormulaRecord formula) +
Convert formula into an array of Ptg tokens.
+
short
Ptg[]SharedFormulaRecord.getFormulaTokens(FormulaRecord formula) SharedFormulaRecord.getFormulaTokens(FormulaRecord formula) +
Convert formula into an array of Ptg tokens.
+
Modified: poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/package-summary.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/package-summary.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/package-summary.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/package-summary.html Mon Dec 3 23:51:13 2018 @@ -816,7 +816,9 @@ RecordInputStream -

Title: Record Input Stream
+
Title: Record Input Stream + + Description: Wraps a stream and provides helper methods for the construction of records.
Modified: poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/package-use.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/package-use.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/package-use.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/hssf/record/package-use.html Mon Dec 3 23:51:13 2018 @@ -829,7 +829,9 @@ RecordInputStream -
Title: Record Input Stream
+
Title: Record Input Stream + + Description: Wraps a stream and provides helper methods for the construction of records.
@@ -1032,7 +1034,9 @@ RecordInputStream -
Title: Record Input Stream
+
Title: Record Input Stream + + Description: Wraps a stream and provides helper methods for the construction of records.
@@ -1059,7 +1063,9 @@ RecordInputStream -
Title: Record Input Stream
+
Title: Record Input Stream + + Description: Wraps a stream and provides helper methods for the construction of records.
@@ -1081,7 +1087,9 @@ RecordInputStream -
Title: Record Input Stream
+
Title: Record Input Stream + + Description: Wraps a stream and provides helper methods for the construction of records.
@@ -1108,7 +1116,9 @@ RecordInputStream -
Title: Record Input Stream
+
Title: Record Input Stream + + Description: Wraps a stream and provides helper methods for the construction of records.
@@ -1150,7 +1160,9 @@ RecordInputStream -
Title: Record Input Stream
+
Title: Record Input Stream + + Description: Wraps a stream and provides helper methods for the construction of records.
@@ -1273,7 +1285,9 @@ RecordInputStream -
Title: Record Input Stream
+
Title: Record Input Stream + + Description: Wraps a stream and provides helper methods for the construction of records.
Modified: poi/site/publish/apidocs/4.0/org/apache/poi/hssf/usermodel/DVConstraint.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/hssf/usermodel/DVConstraint.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/hssf/usermodel/DVConstraint.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/hssf/usermodel/DVConstraint.html Mon Dec 3 23:51:13 2018 @@ -48,7 +48,7 @@ var activeTableTab = "activeTableTab"; static HSSFWorkbook +HSSFWorkbookFactory.createWorkbook() +
Create a new empty Workbook
+ + + +static HSSFWorkbook HSSFWorkbookFactory.createWorkbook(DirectoryNode root)
Creates a HSSFWorkbook from the given DirectoryNode
- + static HSSFWorkbook HSSFWorkbookFactory.createWorkbook(POIFSFileSystem fs)
Creates a HSSFWorkbook from the given NPOIFSFileSystem
- + HSSFWorkbook HSSFSheet.getWorkbook()
Return the parent workbook
Modified: poi/site/publish/apidocs/4.0/org/apache/poi/hssf/usermodel/package-frame.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/hssf/usermodel/package-frame.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/hssf/usermodel/package-frame.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/hssf/usermodel/package-frame.html Mon Dec 3 23:51:13 2018 @@ -17,7 +17,6 @@

Classes

    -
  • DummyGraphics2d
  • DVConstraint
  • EscherGraphics
  • EscherGraphics2d
  • Modified: poi/site/publish/apidocs/4.0/org/apache/poi/hssf/usermodel/package-summary.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/hssf/usermodel/package-summary.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/hssf/usermodel/package-summary.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/hssf/usermodel/package-summary.html Mon Dec 3 23:51:13 2018 @@ -107,178 +107,174 @@ -DummyGraphics2d -  - - DVConstraint
    Data Validation Constraint
    - + EscherGraphics
    Translates Graphics calls into escher calls.
    - + EscherGraphics2d
    Translates Graphics2d calls into escher calls.
    - + FontDetails
    Stores width and height details about a font.
    - + HeaderFooter
    Common class for HSSFHeader and HSSFFooter.
    - + HSSFAnchor
    An anchor is what specifics the position of a shape within a client object or within another containing shape.
    - + HSSFAutoFilter
    Represents autofiltering for the specified worksheet.
    - + HSSFBorderFormatting
    High level representation for Border Formatting component of Conditional Formatting settings
    - + HSSFCell
    High level representation of a cell in a row of a spreadsheet.
    - + HSSFCellStyle
    High level representation of the style of a cell in a sheet of a workbook.
    - + HSSFChart
    Has methods for construction of a chart object.
    - + HSSFChart.HSSFSeries
    A series in a chart
    - + HSSFChildAnchor   - + HSSFClientAnchor
    A client anchor is attached to an excel worksheet.
    - + HSSFColorScaleFormatting
    High level representation for Color Scale / Color Gradient Formatting component of Conditional Formatting settings
    - + HSSFCombobox   - + HSSFComment
    Represents a cell comment - a sticky note associated with a cell.
    - + HSSFConditionalFormatting
    HSSFConditionalFormatting class encapsulates all settings of Conditional Formatting.
    - + HSSFConditionalFormattingRule
    High level representation of Conditional Formatting Rule.
    - + HSSFConditionalFormattingThreshold
    High level representation for Icon / Multi-State / Databar / Colour Scale change thresholds
    - + HSSFCreationHelper   - + HSSFDataBarFormatting
    High level representation for DataBar / Data-Bar Formatting component of Conditional Formatting settings
    - + HSSFDataFormat
    Identifies both built-in and user defined formats within a workbook.
    - + HSSFDataFormatter
    HSSFDataFormatter contains methods for formatting the value stored in an HSSFCell.
    - + HSSFDataValidation
    Utility class for creating data validation cells
    - + HSSFDataValidationHelper
    Helper for working with Data Validation
    - + HSSFDateUtil
    Contains methods for dealing with Excel dates.
    - + HSSFEvaluationWorkbook
    Internal POI use only
    - + HSSFExtendedColor
    The HSSF file format normally stores Color information in the @@ -287,64 +283,64 @@ can be used.
    - + HSSFFont
    Represents a Font used in a workbook.
    - + HSSFFontFormatting
    High level representation for Font Formatting component of Conditional Formatting settings
    - + HSSFFooter
    Class to read and manipulate the footer.
    - + HSSFFormulaEvaluator
    Evaluates formula cells.
    - + HSSFHeader
    Class to read and manipulate the header.
    - + HSSFHyperlink
    Represents an Excel hyperlink.
    - + HSSFIconMultiStateFormatting
    High level representation for Icon / Multi-State Formatting component of Conditional Formatting settings
    - + HSSFName
    High Level Representation of a 'defined name' which could be a 'built-in' name, 'named range' or name of a user defined function.
    - + HSSFObjectData
    Represents binary object (i.e.
    - + HSSFOptimiser
    Excel can get cranky if you give it files containing too @@ -352,111 +348,111 @@ help to avoid those.
    - + HSSFPalette
    Represents a workbook color palette.
    - + HSSFPatriarch
    The patriarch is the toplevel container for shapes in a sheet.
    - + HSSFPatternFormatting
    High level representation for Conditional Formatting settings
    - + HSSFPicture
    Represents a escher picture.
    - + HSSFPictureData
    Represents binary data stored in the file.
    - + HSSFPolygon   - + HSSFPrintSetup
    Used to modify the print setup.
    - + HSSFRangeCopier   - + HSSFRichTextString
    Rich text unicode string.
    - + HSSFRow
    High level representation of a row of a spreadsheet.
    - + HSSFShape
    An abstract shape.
    - + HSSFShapeFactory
    Factory class for producing Excel Shapes from Escher records
    - + HSSFShapeGroup
    A shape group may contain other shapes.
    - + HSSFSheet
    High level representation of a worksheet.
    - + HSSFSheetConditionalFormatting
    The 'Conditional Formatting' facet of HSSFSheet
    - + HSSFSimpleShape
    Represents a simple shape such as a line, rectangle or oval.
    - + HSSFTextbox
    A textbox is a shape that may hold a rich text string.
    - + HSSFWorkbook
    High level representation of a workbook.
    - + HSSFWorkbookFactory
    Helper class which is instantiated by reflection from Modified: poi/site/publish/apidocs/4.0/org/apache/poi/hssf/usermodel/package-tree.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/hssf/usermodel/package-tree.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/hssf/usermodel/package-tree.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/hssf/usermodel/package-tree.html Mon Dec 3 23:51:13 2018 @@ -107,7 +107,6 @@
  • org.apache.poi.hssf.usermodel.EscherGraphics
  • java.awt.Graphics2D
  • Modified: poi/site/publish/apidocs/4.0/org/apache/poi/hwpf/HWPFDocumentCore.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/hwpf/HWPFDocumentCore.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/hwpf/HWPFDocumentCore.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/hwpf/HWPFDocumentCore.html Mon Dec 3 23:51:13 2018 @@ -817,7 +817,7 @@ public byte[] getMainStream()<
    Returns:
    the encryption info if the document is encrypted, otherwise null
    Throws:
    -
    java.io.IOException
    +
    java.io.IOException - If retrieving the encryption information fails
Modified: poi/site/publish/apidocs/4.0/org/apache/poi/ooxml/extractor/CommandLineTextExtractor.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/ooxml/extractor/CommandLineTextExtractor.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/ooxml/extractor/CommandLineTextExtractor.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/ooxml/extractor/CommandLineTextExtractor.html Mon Dec 3 23:51:13 2018 @@ -111,7 +111,7 @@ var activeTableTab = "activeTableTab";
public class CommandLineTextExtractor
 extends java.lang.Object
A command line wrapper around ExtractorFactory, useful - for when debugging.
+ for when debugging. Modified: poi/site/publish/apidocs/4.0/org/apache/poi/ooxml/extractor/package-summary.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/ooxml/extractor/package-summary.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/ooxml/extractor/package-summary.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/ooxml/extractor/package-summary.html Mon Dec 3 23:51:13 2018 @@ -85,7 +85,7 @@ CommandLineTextExtractor
A command line wrapper around ExtractorFactory, useful - for when debugging.
+ for when debugging. Modified: poi/site/publish/apidocs/4.0/org/apache/poi/openxml4j/opc/OPCPackage.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/openxml4j/opc/OPCPackage.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/openxml4j/opc/OPCPackage.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/openxml4j/opc/OPCPackage.html Mon Dec 3 23:51:13 2018 @@ -959,7 +959,9 @@ implements Close the open, writable package and save its content. If your package is open read only, then you should call revert() - when finished with the package. + when finished with the package. + + This method is not thread-safe.
Specified by:
close in interface java.io.Closeable
Modified: poi/site/publish/apidocs/4.0/org/apache/poi/openxml4j/util/Nullable.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/openxml4j/util/Nullable.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/openxml4j/util/Nullable.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/openxml4j/util/Nullable.html Mon Dec 3 23:51:13 2018 @@ -17,8 +17,8 @@ catch(err) { } //--> -var methods = {"i0":10,"i1":10,"i2":10}; -var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; +var methods = {"i0":42,"i1":42,"i2":42}; +var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"],32:["t6","Deprecated Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; @@ -107,8 +107,13 @@ var activeTableTab = "activeTableTab";

  • +
    Deprecated.  +
    No longer used in POI code base, use Optional instead
    +

    -
    public final class Nullable<E>
    +
    @Removal(version="4.2")
    + @Deprecated
    +public final class Nullable<E>
     extends java.lang.Object
    An immutable object that could be defined as null.
    @@ -136,11 +141,13 @@ extends java.lang.Object
    Nullable() +
    Deprecated. 
    Constructor.
    Nullable(E value) +
    Deprecated. 
    Constructor.
    @@ -154,7 +161,7 @@ extends java.lang.Object

    Method Summary

    - + @@ -162,18 +169,21 @@ extends java.lang.Object @@ -206,6 +216,7 @@ extends java.lang.Object
  • Nullable

    public Nullable()
    +
    Deprecated. 
    Constructor.
  • @@ -218,6 +229,7 @@ extends java.lang.Object
  • Nullable

    public Nullable(E value)
    +
    Deprecated. 
    Constructor.
    Parameters:
    @@ -240,6 +252,7 @@ extends java.lang.Object
  • getValue

    public E getValue()
    +
    Deprecated. 
    Get the store value if any.
    Returns:
    @@ -254,6 +267,7 @@ extends java.lang.Object
  • hasValue

    public boolean hasValue()
    +
    Deprecated. 
    Get the status of this nullable.
    Returns:
    @@ -269,6 +283,7 @@ extends java.lang.Object
  • nullify

    public void nullify()
    +
    Deprecated. 
    Set the stored value to null.
  • Modified: poi/site/publish/apidocs/4.0/org/apache/poi/openxml4j/util/ZipInputStreamZipEntrySource.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/openxml4j/util/ZipInputStreamZipEntrySource.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/openxml4j/util/ZipInputStreamZipEntrySource.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/openxml4j/util/ZipInputStreamZipEntrySource.html Mon Dec 3 23:51:13 2018 @@ -141,7 +141,7 @@ implements
  • All Methods Instance Methods Concrete Methods All Methods Instance Methods Concrete Methods Deprecated Methods 
    Modifier and Type Method and Description
    E getValue() +
    Deprecated. 
    Get the store value if any.
    boolean hasValue() +
    Deprecated. 
    Get the status of this nullable.
    void nullify() +
    Deprecated. 
    Set the stored value to null.
    ZipInputStreamZipEntrySource(ZipArchiveThresholdInputStream inp)
    Reads all the entries from the ZipInputStream - into memory, and closes the source stream.
    + into memory, and don't close (since POI 4.0.1) the source stream.
    @@ -222,7 +222,7 @@ implements ZipArchiveThresholdInputStream inp) throws java.io.IOException
    Reads all the entries from the ZipInputStream - into memory, and closes the source stream. + into memory, and don't close (since POI 4.0.1) the source stream. We'll then eat lots of memory, but be able to work with the entries at-will.
    Modified: poi/site/publish/apidocs/4.0/org/apache/poi/openxml4j/util/class-use/ZipArchiveThresholdInputStream.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/openxml4j/util/class-use/ZipArchiveThresholdInputStream.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/openxml4j/util/class-use/ZipArchiveThresholdInputStream.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/openxml4j/util/class-use/ZipArchiveThresholdInputStream.html Mon Dec 3 23:51:13 2018 @@ -143,7 +143,7 @@ ZipInputStreamZipEntrySource(ZipArchiveThresholdInputStream inp)
    Reads all the entries from the ZipInputStream - into memory, and closes the source stream.
    + into memory, and don't close (since POI 4.0.1) the source stream. Modified: poi/site/publish/apidocs/4.0/org/apache/poi/openxml4j/util/package-summary.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/openxml4j/util/package-summary.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/openxml4j/util/package-summary.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/openxml4j/util/package-summary.html Mon Dec 3 23:51:13 2018 @@ -101,8 +101,8 @@ Nullable<E> - -
    An immutable object that could be defined as null.
    +Deprecated +
    No longer used in POI code base, use Optional instead
    Modified: poi/site/publish/apidocs/4.0/org/apache/poi/poifs/crypt/dsig/SignatureConfig.html URL: http://svn.apache.org/viewvc/poi/site/publish/apidocs/4.0/org/apache/poi/poifs/crypt/dsig/SignatureConfig.html?rev=1848113&r1=1848112&r2=1848113&view=diff ============================================================================== --- poi/site/publish/apidocs/4.0/org/apache/poi/poifs/crypt/dsig/SignatureConfig.html (original) +++ poi/site/publish/apidocs/4.0/org/apache/poi/poifs/crypt/dsig/SignatureConfig.html Mon Dec 3 23:51:13 2018 @@ -246,7 +246,7 @@ extends java.lang.Object the Santuario xmlsec provider the JDK xmlsec provider - + For signing the classes are linked against the Santuario xmlsec, so this might only work for validation (not tested). @@ -606,7 +606,7 @@ extends java.lang.Object

    init

    protected void init(boolean onlyValidation)
    Inits and checks the config object. - If not set previously, complex configuration properties also get + If not set previously, complex configuration properties also get created/initialized via this initialization call.
    Parameters:
    @@ -1464,7 +1464,7 @@ extends java.lang.Object
    Make sure the DN is encoded using the same order as present within the certificate. This is an Office2010 work-around. Should be reverted back. - + XXX: not correct according to RFC 4514.
    Returns:
    @@ -1667,7 +1667,7 @@ extends java.lang.Object
  • the Santuario xmlsec provider
  • the JDK xmlsec provider
- + For signing the classes are linked against the Santuario xmlsec, so this might only work for validation (not tested).
--------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org For additional commands, e-mail: commits-help@poi.apache.org