]> source.dussan.org Git - poi.git/commitdiff
HWPF SectionProperties implements Cloneable
authorJaven O'Neal <onealj@apache.org>
Sun, 17 Jul 2016 10:07:06 +0000 (10:07 +0000)
committerJaven O'Neal <onealj@apache.org>
Sun, 17 Jul 2016 10:07:06 +0000 (10:07 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1753046 13f79535-47bb-0310-9956-ffa450edef68

src/scratchpad/src/org/apache/poi/hwpf/usermodel/SectionProperties.java

index 384df1a50f8815961f933803bd279c7651836b24..47aad84d2524e83c08d8a519cbc9694299738ae5 100644 (file)
@@ -19,7 +19,7 @@ package org.apache.poi.hwpf.usermodel;
 
 import org.apache.poi.hwpf.model.types.SEPAbstractType;
 
-public final class SectionProperties extends SEPAbstractType
+public final class SectionProperties extends SEPAbstractType implements Cloneable
 {
     private short field_60_rncftn;
     private short field_61_rncedn;
@@ -37,6 +37,7 @@ public final class SectionProperties extends SEPAbstractType
         field_26_dttmPropRMark = new DateAndTime();
     }
 
+    @Override
     public Object clone() throws CloneNotSupportedException
     {
         SectionProperties copy = (SectionProperties) super.clone();