Browse Source

POI 5.1.0

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1892897 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_5_2_0
PJ Fanning 2 years ago
parent
commit
1bdf4bd18f

+ 1
- 1
poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/OPCPackage.java View File

@@ -1636,7 +1636,7 @@ public abstract class OPCPackage implements RelationshipSource, Closeable {

/**
* @return true if the package is in Strict OOXML format
* @since POI 5.0.1
* @since POI 5.1.0
*/
public boolean isStrictOoxmlFormat() {
PackageRelationshipCollection coreDocRelationships = getRelationshipsByType(

+ 1
- 1
poi-ooxml/src/main/java/org/apache/poi/xddf/usermodel/chart/XDDFChart.java View File

@@ -1070,7 +1070,7 @@ public abstract class XDDFChart extends POIXMLDocumentPart implements TextContai
* @param newSheet
* sheet to be used in the data references.
*
* @since POI 5.0.1
* @since POI 5.1.0
*/
public void replaceReferences(XSSFSheet newSheet) {
for (XDDFChartData data : getChartSeries()) {

+ 2
- 2
poi-ooxml/src/main/java/org/apache/poi/xddf/usermodel/chart/XDDFChartData.java View File

@@ -258,7 +258,7 @@ public abstract class XDDFChartData {
*
* @param index
* data point index.
* @since POI 5.0.1
* @since POI 5.1.0
*/
public void clearDataPoint(long index) {
List<CTDPt> points = getDPtList();
@@ -278,7 +278,7 @@ public abstract class XDDFChartData {
* data point index.
* @return
* the data point with the given {@code index}.
* @since POI 5.0.1
* @since POI 5.1.0
*/
public XDDFDataPoint getDataPoint(long index) {
List<CTDPt> points = getDPtList();

+ 1
- 1
poi-ooxml/src/main/java/org/apache/poi/xddf/usermodel/chart/XDDFDataPoint.java View File

@@ -28,7 +28,7 @@ import org.openxmlformats.schemas.drawingml.x2006.chart.CTDPt;
import org.openxmlformats.schemas.drawingml.x2006.chart.CTMarker;

/**
* @since 5.0.1
* @since 5.1.0
*/
@Beta
public class XDDFDataPoint {

+ 1
- 1
poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFSheet.java View File

@@ -3373,7 +3373,7 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
* {@link XSSFCell#removeHyperlink()} can be used if the hyperlink is just for that one cell.
*
* @param hyperlink the link to remove
* @since POI 5.0.1
* @since POI 5.1.0
*/
public void removeHyperlink(XSSFHyperlink hyperlink) {
hyperlinks.remove(hyperlink);

+ 1
- 1
poi-ooxml/src/main/java/org/apache/poi/xssf/usermodel/XSSFWorkbook.java View File

@@ -688,7 +688,7 @@ public class XSSFWorkbook extends POIXMLDocument implements Workbook, Date1904Su
}

/**
* Modified in POI 5.0.1 to only log issues with unknown relationship types
* Modified in POI 5.1.0 to only log issues with unknown relationship types
* - see https://bz.apache.org/bugzilla/show_bug.cgi?id=64759
*
* @since 3.14-Beta1

+ 1
- 1
poi/src/main/java/org/apache/poi/ss/formula/atp/PercentRankExcFunction.java View File

@@ -42,7 +42,7 @@ import java.util.List;
*
* @see PercentRank
* @see PercentRankIncFunction
* @since POI 5.0.1
* @since POI 5.1.0
*/
final class PercentRankExcFunction implements FreeRefFunction {


+ 1
- 1
poi/src/main/java/org/apache/poi/ss/formula/atp/PercentRankIncFunction.java View File

@@ -38,7 +38,7 @@ import org.apache.poi.ss.formula.functions.PercentRank;
*
* @see PercentRank
* @see PercentRankExcFunction
* @since POI 5.0.1
* @since POI 5.1.0
*/
final class PercentRankIncFunction implements FreeRefFunction {


+ 1
- 1
poi/src/main/java/org/apache/poi/ss/formula/atp/TextJoinFunction.java View File

@@ -38,7 +38,7 @@ import java.util.List;
* <b>text2 ...</b> Optional. Additional text items to be joined. There can be a maximum of 252 text arguments for the text items, including text1.
* Each can be a text string, or array of strings, such as a range of cells.<br>
*
* @since POI 5.0.1
* @since POI 5.1.0
*/
final class TextJoinFunction implements FreeRefFunction {


+ 1
- 1
poi/src/main/java/org/apache/poi/ss/formula/functions/Fixed0ArgFunction.java View File

@@ -24,7 +24,7 @@ import org.apache.poi.util.Removal;
/**
* Convenience base class for functions that only take zero arguments.
*
* @deprecated replaced by lambda expressions in 5.0.1
* @deprecated replaced by lambda expressions in 5.1.0
*/
@Deprecated
@Removal(version = "6.0.0")

+ 1
- 1
poi/src/main/java/org/apache/poi/ss/formula/functions/PercentRank.java View File

@@ -40,7 +40,7 @@ import java.util.List;
* <br>
* Returns a number between 0 and 1 representing a percentage.
*
* @since POI 5.0.1
* @since POI 5.1.0
*/
public final class PercentRank implements Function {


+ 1
- 1
poi/src/main/java/org/apache/poi/ss/formula/functions/TextFunction.java View File

@@ -148,7 +148,7 @@ public abstract class TextFunction implements Function {
/**
* An implementation of the TRIM function:
* Removes leading and trailing spaces from value if evaluated operand
* value is string. Since POI 5.0.1, this also trims double spaces so that only 1
* value is string. Since POI 5.1.0, this also trims double spaces so that only 1
* is kept (https://bz.apache.org/bugzilla/show_bug.cgi?id=65230).
* Author: Manda Wilson &lt; wilson at c bio dot msk cc dot org &gt;
*/

Loading…
Cancel
Save