From: Javen O'Neal Date: Sun, 17 Jul 2016 10:07:06 +0000 (+0000) Subject: HWPF SectionProperties implements Cloneable X-Git-Tag: REL_3_15_BETA3~90 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=ed0cceaf5d30199f765f3e59d65d1e09d06b400a;p=poi.git HWPF SectionProperties implements Cloneable git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1753046 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/scratchpad/src/org/apache/poi/hwpf/usermodel/SectionProperties.java b/src/scratchpad/src/org/apache/poi/hwpf/usermodel/SectionProperties.java index 384df1a50f..47aad84d25 100644 --- a/src/scratchpad/src/org/apache/poi/hwpf/usermodel/SectionProperties.java +++ b/src/scratchpad/src/org/apache/poi/hwpf/usermodel/SectionProperties.java @@ -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();