// apply plugin: 'eclipse'
apply plugin: 'idea'
- version = '5.2.6-SNAPSHOT'
+ version = '5.3.0-SNAPSHOT'
}
/**
<description>The Apache POI project Ant build.</description>
- <property name="version.id" value="5.2.6-SNAPSHOT"/>
+ <property name="version.id" value="5.3.0-SNAPSHOT"/>
<property name="release.rc" value=""/>
<property environment="env"/>
<groupId>org.apache.poi</groupId>
<artifactId>poi-bundle</artifactId>
<packaging>bundle</packaging>
- <version>5.2.6-SNAPSHOT</version>
+ <version>5.3.0-SNAPSHOT</version>
<name>Apache POI OSGi bundle</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <poi.version>5.2.6-SNAPSHOT</poi.version>
+ <poi.version>5.3.0-SNAPSHOT</poi.version>
<pax.exam.version>4.12.0</pax.exam.version>
</properties>
/**\r
* Represents a hyperlink relationship.\r
*\r
- * @since POI 5.2.6\r
+ * @since POI 5.3.0\r
*/\r
public class HyperlinkRelationship extends ReferenceRelationship {\r
/**\r
* Returns the list of child relations for this POIXMLDocumentPart.
*
* <p>
- * Since POI 5.2.6, Reference Relationships are stored separately from other child relations.
+ * Since POI 5.3.0, Reference Relationships are stored separately from other child relations.
* </p>
*
* @return child relations
*
* @param relId the part which is to be removed
* @return true, if the relation was removed
- * @since POI 5.2.6
+ * @since POI 5.3.0
*/
public final boolean removeReferenceRelationship(String relId) {
ReferenceRelationship existing = referenceRelationships.remove(relId);
*
* @param relId the relation id
* @return the reference relationship or {@code null} if not found
- * @since POI 5.2.6
+ * @since POI 5.3.0
*/
public final ReferenceRelationship getReferenceRelationship(String relId) {
return referenceRelationships.get(relId);
* @param isExternal true, if the target is an external resource
* @param relId the relation id
* @return the created reference relationship
- * @since POI 5.2.6
+ * @since POI 5.3.0
*/
public final HyperlinkRelationship createHyperlink(URI uri, boolean isExternal, String relId) {
PackageRelationship pr = packagePart.addRelationship(uri, isExternal ? TargetMode.EXTERNAL : TargetMode.INTERNAL,
* Returns an unmodifiable list of reference relationships for this POIXMLDocumentPart.
*
* @return reference relationships
- * @since POI 5.2.6
+ * @since POI 5.3.0
* @see #getRelationParts() for child relations
*/
public final List<ReferenceRelationship> getReferenceRelationships() {
/**\r
* Defines a reference relationship. A reference relationship can be internal or external.\r
*\r
- * @since POI 5.2.6\r
+ * @since POI 5.3.0\r
*/\r
public abstract class ReferenceRelationship {\r
private POIXMLDocumentPart container;\r
/**
* Returns the path name of the ZIP file.
* @return the path name of the ZIP file
- * @deprecated there is no need for this method - it will be removed in a future version of POI (deprecated since POI 5.2.6)
+ * @deprecated there is no need for this method - it will be removed in a future version of POI (deprecated since POI 5.3.0)
*/
@Removal(version = "7.0.0")
public String getName() {
/**
* Represents a polyline vertex in a shape's geometry.
- * Until POI 5.2.6, this class not was not properly implemented and was throwing an exception.
+ * Until POI 5.3.0, this class not was not properly implemented and was throwing an exception.
*/
public class PolyLineTo implements GeometryRow {
/**
* SVG graphics (.svg)
*
- * @since POI 5.2.6
+ * @since POI 5.3.0
*/
public static final int PICTURE_TYPE_SVG = PictureType.SVG.ooxmlId;
}