Author: onealj Date: Sun Jul 17 10:07:06 2016 New Revision: 1753046 URL: http://svn.apache.org/viewvc?rev=1753046&view=rev Log: HWPF SectionProperties implements Cloneable
Modified: poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/usermodel/SectionProperties.java Modified: poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/usermodel/SectionProperties.java URL: http://svn.apache.org/viewvc/poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/usermodel/SectionProperties.java?rev=1753046&r1=1753045&r2=1753046&view=diff ============================================================================== --- poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/usermodel/SectionProperties.java (original) +++ poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/usermodel/SectionProperties.java Sun Jul 17 10:07:06 2016 @@ -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 ext field_26_dttmPropRMark = new DateAndTime(); } + @Override public Object clone() throws CloneNotSupportedException { SectionProperties copy = (SectionProperties) super.clone(); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@poi.apache.org For additional commands, e-mail: commits-h...@poi.apache.org