]> source.dussan.org Git - poi.git/commitdiff
format and sort members
authorSergey Vladimirov <sergey@apache.org>
Sat, 16 Jul 2011 08:17:34 +0000 (08:17 +0000)
committerSergey Vladimirov <sergey@apache.org>
Sat, 16 Jul 2011 08:17:34 +0000 (08:17 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1147379 13f79535-47bb-0310-9956-ffa450edef68

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

index 7bd528c3e96b49748e279e43bdc005c3de5bbde2..101f8470529ae8c9c8f45056d37c60f1f9c7d78c 100644 (file)
@@ -20,11 +20,9 @@ package org.apache.poi.hwpf.usermodel;
 import org.apache.poi.hwpf.HWPFOldDocument;
 import org.apache.poi.hwpf.model.SEPX;
 
-public final class Section
-  extends Range
+public final class Section extends Range
 {
-
-  private SectionProperties _props;
+    private SectionProperties _props;
 
     public Section( SEPX sepx, Range parent )
     {
@@ -38,23 +36,17 @@ public final class Section
             _props = sepx.getSectionProperties();
     }
 
-  public int type()
-  {
-    return TYPE_SECTION;
-  }
-
-  public int getNumColumns()
-  {
-    return _props.getCcolM1() + 1;
-  }
+    public Object clone() throws CloneNotSupportedException
+    {
+        Section s = (Section) super.clone();
+        s._props = (SectionProperties) _props.clone();
+        return s;
+    }
 
-  public Object clone()
-     throws CloneNotSupportedException
-   {
-     Section s = (Section)super.clone();
-     s._props = (SectionProperties)_props.clone();
-     return s;
-   }
+    public int getNumColumns()
+    {
+        return _props.getCcolM1() + 1;
+    }
 
     @Override
     public String toString()
@@ -62,4 +54,8 @@ public final class Section
         return "Section [" + getStartOffset() + "; " + getEndOffset() + ")";
     }
 
+    public int type()
+    {
+        return TYPE_SECTION;
+    }
 }