]> source.dussan.org Git - poi.git/commitdiff
StringRecords are inValueSection.
authorJason Height <jheight@apache.org>
Thu, 18 Sep 2003 05:21:33 +0000 (05:21 +0000)
committerJason Height <jheight@apache.org>
Thu, 18 Sep 2003 05:21:33 +0000 (05:21 +0000)
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353358 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hssf/record/StringRecord.java

index 4e28cad6dc3ab7e2f7b9dde0e8bc0bd841b516db..d1e57ada42caf60e7299986672d8887351e407b8 100644 (file)
@@ -165,6 +165,12 @@ public class StringRecord
         return (field_2_unicode_flag == 1);
     }
 
+    public boolean isInValueSection()
+    {
+        return true;
+    }
+
+
     /**
      * called by the class that is responsible for writing this sucker.
      * Subclasses should implement this so that their data is passed back in a
@@ -237,7 +243,7 @@ public class StringRecord
         buffer.append("[/STRING]\n");
         return buffer.toString();
     }
-    
+
     public Object clone() {
         StringRecord rec = new StringRecord();
         rec.field_1_string_length = this.field_1_string_length;