bug 56154: add @since annotations to getLastModifiedBy and setLastModifiedBy methods

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1751949 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2016-07-08 17:59:01 +00:00
parent 182c1415f5
commit ed4ae3fff0
1 changed files with 2 additions and 0 deletions

View 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);
}