diff options
author | PJ Fanning <fanningpj@apache.org> | 2024-11-06 20:56:45 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2024-11-06 20:56:45 +0000 |
commit | e132050d2e4cb2f42e17d6a277a5bd0fc20a6956 (patch) | |
tree | 9ba91d7bd0be1a05e5fa31212e2d27b01a94d0e4 | |
parent | 157512d437863fc684d338cf316e6658cb16c2cf (diff) | |
download | poi-e132050d2e4cb2f42e17d6a277a5bd0fc20a6956.tar.gz poi-e132050d2e4cb2f42e17d6a277a5bd0fc20a6956.zip |
add since tags
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1921801 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | poi-scratchpad/src/main/java/org/apache/poi/hsmf/datatypes/AttachmentChunks.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/poi-scratchpad/src/main/java/org/apache/poi/hsmf/datatypes/AttachmentChunks.java b/poi-scratchpad/src/main/java/org/apache/poi/hsmf/datatypes/AttachmentChunks.java index 8993701fbd..cabd8003c8 100644 --- a/poi-scratchpad/src/main/java/org/apache/poi/hsmf/datatypes/AttachmentChunks.java +++ b/poi-scratchpad/src/main/java/org/apache/poi/hsmf/datatypes/AttachmentChunks.java @@ -150,6 +150,7 @@ public class AttachmentChunks implements ChunkGroup { /** * @return long path name for the attachment + * @since POI 5.4.0 */ public StringChunk getAttachLongPathName() { return attachLongPathName; @@ -157,14 +158,15 @@ public class AttachmentChunks implements ChunkGroup { /** * @return attachment content location -- relative or absolute URI matching reference in html body + * @since POI 5.4.0 */ public StringChunk getAttachContentLocation() { return attachContentLocation; } /** - * * @return the display name of the attachment + * @since POI 5.4.0 */ public StringChunk getAttachDisplayName() { return attachDisplayName; @@ -172,6 +174,7 @@ public class AttachmentChunks implements ChunkGroup { /** * @return the language property for the attachment + * @since POI 5.4.0 */ public StringChunk getAttachLanguage() { return attachLanguage; @@ -207,6 +210,7 @@ public class AttachmentChunks implements ChunkGroup { /** * @return record key + * @since POI 5.4.0 */ public ByteChunk getAttachRecordKey() { return attachRecordKey; |