]> source.dussan.org Git - poi.git/commitdiff
bug 56154: add @since annotations to getLastModifiedBy and setLastModifiedBy methods
authorJaven O'Neal <onealj@apache.org>
Fri, 8 Jul 2016 17:59:01 +0000 (17:59 +0000)
committerJaven O'Neal <onealj@apache.org>
Fri, 8 Jul 2016 17:59:01 +0000 (17:59 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751949 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/java/org/apache/poi/POIXMLProperties.java

index d2954e3fe52cca4971e72269be70e64b165195d5..2e434966b61f7c7a2572588409c424872d61d95e 100644 (file)
@@ -301,9 +301,11 @@ public class POIXMLProperties {
         public void setLastPrinted(String date) {
             part.setLastPrintedProperty(date);
         }
+        /** @since POI 3.15 beta 3 */
         public String getLastModifiedBy() {
             return part.getLastModifiedByProperty().getValue();
         }
+        /** @since POI 3.15 beta 3 */
         public void setLastModifiedBy(String user) {
             part.setLastModifiedByProperty(user);
         }