You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ni...@apache.org on 2007/06/29 16:48:12 UTC

svn commit: r551912 [2/2] - /poi/trunk/src/java/org/apache/poi/hssf/record/

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/PasswordRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/PasswordRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/PasswordRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/PasswordRecord.java Fri Jun 29 07:48:00 2007
@@ -41,10 +41,7 @@
 
     /**
      * Constructs a Password record and sets its fields appropriately.
-     *
-     * @param id     id must be 0x13 or an exception will be throw upon validation
-     * @param size  the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public PasswordRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/PasswordRev4Record.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/PasswordRev4Record.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/PasswordRev4Record.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/PasswordRev4Record.java Fri Jun 29 07:48:00 2007
@@ -42,10 +42,7 @@
 
     /**
      * Constructs a PasswordRev4 (PROT4REVPASS) record and sets its fields appropriately.
-     *
-     * @param id     id must be 0x1bc or an exception will be throw upon validation
-     * @param size  the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public PasswordRev4Record(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/PlotAreaRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/PlotAreaRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/PlotAreaRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/PlotAreaRecord.java Fri Jun 29 07:48:00 2007
@@ -44,10 +44,7 @@
     /**
      * Constructs a PlotArea record and sets its fields appropriately.
      *
-     * @param id    id must be 0x1035 or an exception
-     *              will be throw upon validation
-     * @param size  size the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public PlotAreaRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/PlotGrowthRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/PlotGrowthRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/PlotGrowthRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/PlotGrowthRecord.java Fri Jun 29 07:48:00 2007
@@ -46,10 +46,7 @@
     /**
      * Constructs a PlotGrowth record and sets its fields appropriately.
      *
-     * @param id    id must be 0x1064 or an exception
-     *              will be throw upon validation
-     * @param size  size the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public PlotGrowthRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/PrecisionRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/PrecisionRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/PrecisionRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/PrecisionRecord.java Fri Jun 29 07:48:00 2007
@@ -42,10 +42,7 @@
 
     /**
      * Constructs a Precision record and sets its fields appropriately.
-     *
-     * @param id     id must be 0xe or an exception will be throw upon validation
-     * @param size  the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public PrecisionRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/PrintGridlinesRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/PrintGridlinesRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/PrintGridlinesRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/PrintGridlinesRecord.java Fri Jun 29 07:48:00 2007
@@ -42,10 +42,7 @@
 
     /**
      * Constructs a PrintGridlines record and sets its fields appropriately.
-     *
-     * @param id     id must be 0x2b or an exception will be throw upon validation
-     * @param size  the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public PrintGridlinesRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/PrintHeadersRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/PrintHeadersRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/PrintHeadersRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/PrintHeadersRecord.java Fri Jun 29 07:48:00 2007
@@ -43,10 +43,7 @@
 
     /**
      * Constructs a PrintHeaders record and sets its fields appropriately.
-     *
-     * @param id     id must be 0x2a or an exception will be throw upon validation
-     * @param size  the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public PrintHeadersRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/PrintSetupRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/PrintSetupRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/PrintSetupRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/PrintSetupRecord.java Fri Jun 29 07:48:00 2007
@@ -73,10 +73,7 @@
 
     /**
      * Constructs a PrintSetup (SETUP) record and sets its fields appropriately.
-     *
-     * @param id     id must be 0xa1 or an exception will be throw upon validation
-     * @param size  the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public PrintSetupRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/ProtectRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/ProtectRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/ProtectRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/ProtectRecord.java Fri Jun 29 07:48:00 2007
@@ -43,10 +43,7 @@
 
     /**
      * Constructs a Protect record and sets its fields appropriately.
-     *
-     * @param id id must be 0x12 or an exception will be throw upon validation
-     * @param size size the size of the data area of the record
-     * @param data data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public ProtectRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/ProtectionRev4Record.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/ProtectionRev4Record.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/ProtectionRev4Record.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/ProtectionRev4Record.java Fri Jun 29 07:48:00 2007
@@ -42,10 +42,7 @@
 
     /**
      * Constructs a ProtectionRev4 record and sets its fields appropriately.
-     *
-     * @param id     id must be 0x1af or an exception will be throw upon validation
-     * @param size  the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public ProtectionRev4Record(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/RKRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/RKRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/RKRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/RKRecord.java Fri Jun 29 07:48:00 2007
@@ -60,10 +60,7 @@
 
     /**
      * Constructs a RK record and sets its fields appropriately.
-     *
-     * @param id     id must be 0x27e or an exception will be throw upon validation
-     * @param size  the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public RKRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/RecalcIdRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/RecalcIdRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/RecalcIdRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/RecalcIdRecord.java Fri Jun 29 07:48:00 2007
@@ -51,10 +51,7 @@
 
     /**
      * Constructs a RECALCID record and sets its fields appropriately.
-     *
-     * @param id     id must be 0x13d or an exception will be throw upon validation
-     * @param size  the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public RecalcIdRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/Record.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/Record.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/Record.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/Record.java Fri Jun 29 07:48:00 2007
@@ -45,11 +45,8 @@
     /**
      * Constructor Record
      *
-     * @param id record id
-     * @param size record size
-     * @param data raw data
+     * @param in the RecordInputstream to read the record from
      */
-
     public Record(RecordInputStream in)
     {
         validateSid(in.getSid());

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/RefModeRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/RefModeRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/RefModeRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/RefModeRecord.java Fri Jun 29 07:48:00 2007
@@ -44,10 +44,7 @@
 
     /**
      * Constructs a RefMode record and sets its fields appropriately.
-     *
-     * @param id     id must be 0xf or an exception will be throw upon validation
-     * @param size  the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public RefModeRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/RefreshAllRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/RefreshAllRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/RefreshAllRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/RefreshAllRecord.java Fri Jun 29 07:48:00 2007
@@ -42,10 +42,7 @@
 
     /**
      * Constructs a RefreshAll record and sets its fields appropriately.
-     *
-     * @param id     id must be 0x187 or an exception will be throw upon validation
-     * @param size  the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public RefreshAllRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/RowRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/RowRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/RowRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/RowRecord.java Fri Jun 29 07:48:00 2007
@@ -68,10 +68,7 @@
 
     /**
      * Constructs a Row record and sets its fields appropriately.
-     *
-     * @param id     id must be 0x208 or an exception will be throw upon validation
-     * @param size  the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public RowRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/SCLRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/SCLRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/SCLRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/SCLRecord.java Fri Jun 29 07:48:00 2007
@@ -46,10 +46,7 @@
     /**
      * Constructs a SCL record and sets its fields appropriately.
      *
-     * @param id    id must be 0xa0 or an exception
-     *              will be throw upon validation
-     * @param size  size the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public SCLRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/SaveRecalcRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/SaveRecalcRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/SaveRecalcRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/SaveRecalcRecord.java Fri Jun 29 07:48:00 2007
@@ -42,10 +42,7 @@
 
     /**
      * Constructs an SaveRecalc record and sets its fields appropriately.
-     *
-     * @param id     id must be 0x5f or an exception will be throw upon validation
-     * @param size  the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public SaveRecalcRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/SelectionRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/SelectionRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/SelectionRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/SelectionRecord.java Fri Jun 29 07:48:00 2007
@@ -83,10 +83,7 @@
 
     /**
      * Constructs a Selection record and sets its fields appropriately.
-     *
-     * @param id     id must be 0x1d or an exception will be throw upon validation
-     * @param size  the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public SelectionRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/SeriesChartGroupIndexRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/SeriesChartGroupIndexRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/SeriesChartGroupIndexRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/SeriesChartGroupIndexRecord.java Fri Jun 29 07:48:00 2007
@@ -45,10 +45,7 @@
     /**
      * Constructs a SeriesChartGroupIndex record and sets its fields appropriately.
      *
-     * @param id    id must be 0x1045 or an exception
-     *              will be throw upon validation
-     * @param size  size the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public SeriesChartGroupIndexRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/SeriesIndexRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/SeriesIndexRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/SeriesIndexRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/SeriesIndexRecord.java Fri Jun 29 07:48:00 2007
@@ -45,10 +45,7 @@
     /**
      * Constructs a SeriesIndex record and sets its fields appropriately.
      *
-     * @param id    id must be 0x1065 or an exception
-     *              will be throw upon validation
-     * @param size  size the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public SeriesIndexRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/SeriesLabelsRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/SeriesLabelsRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/SeriesLabelsRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/SeriesLabelsRecord.java Fri Jun 29 07:48:00 2007
@@ -51,10 +51,7 @@
     /**
      * Constructs a SeriesLabels record and sets its fields appropriately.
      *
-     * @param id    id must be 0x100c or an exception
-     *              will be throw upon validation
-     * @param size  size the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public SeriesLabelsRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/SeriesListRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/SeriesListRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/SeriesListRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/SeriesListRecord.java Fri Jun 29 07:48:00 2007
@@ -45,10 +45,7 @@
     /**
      * Constructs a SeriesList record and sets its fields appropriately.
      *
-     * @param id    id must be 0x1016 or an exception
-     *              will be throw upon validation
-     * @param size  size the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public SeriesListRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/SeriesRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/SeriesRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/SeriesRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/SeriesRecord.java Fri Jun 29 07:48:00 2007
@@ -62,10 +62,7 @@
     /**
      * Constructs a Series record and sets its fields appropriately.
      *
-     * @param id    id must be 0x1003 or an exception
-     *              will be throw upon validation
-     * @param size  size the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public SeriesRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/SeriesTextRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/SeriesTextRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/SeriesTextRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/SeriesTextRecord.java Fri Jun 29 07:48:00 2007
@@ -48,10 +48,7 @@
     /**
      * Constructs a SeriesText record and sets its fields appropriately.
      *
-     * @param id    id must be 0x100d or an exception
-     *              will be throw upon validation
-     * @param size  size the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public SeriesTextRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/SeriesToChartGroupRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/SeriesToChartGroupRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/SeriesToChartGroupRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/SeriesToChartGroupRecord.java Fri Jun 29 07:48:00 2007
@@ -45,10 +45,7 @@
     /**
      * Constructs a SeriesToChartGroup record and sets its fields appropriately.
      *
-     * @param id    id must be 0x1045 or an exception
-     *              will be throw upon validation
-     * @param size  size the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public SeriesToChartGroupRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/SharedFormulaRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/SharedFormulaRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/SharedFormulaRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/SharedFormulaRecord.java Fri Jun 29 07:48:00 2007
@@ -55,10 +55,7 @@
     }
 
     /**
-     * construct the sharedformula record, save all the information
-     * @param id    id of the record -not validated, just stored for serialization
-     * @param size  size of the data
-     * @param data  the data
+     * @param in the RecordInputstream to read the record from
      */
 
     public SharedFormulaRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/SheetPropertiesRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/SheetPropertiesRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/SheetPropertiesRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/SheetPropertiesRecord.java Fri Jun 29 07:48:00 2007
@@ -54,10 +54,7 @@
     /**
      * Constructs a SheetProperties record and sets its fields appropriately.
      *
-     * @param id    id must be 0x1044 or an exception
-     *              will be throw upon validation
-     * @param size  size the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public SheetPropertiesRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/StringRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/StringRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/StringRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/StringRecord.java Fri Jun 29 07:48:00 2007
@@ -43,9 +43,7 @@
     /**
      * Constructs a String record and sets its fields appropriately.
      *
-     * @param id     id must be 0x204 or an exception will be throw upon validation
-     * @param size  the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
     public StringRecord(RecordInputStream in)
     {
@@ -68,10 +66,7 @@
     }
 
     /**
-     * called by the constructor, should set class level fields.  Should throw
-     * runtime exception for bad/icomplete data.
-     *
-     * @param data raw data
+     * @param in the RecordInputstream to read the record from
      * @param size size of data
      * @param offset of the record's data (provided a big array of the file)
      */

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/StyleRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/StyleRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/StyleRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/StyleRecord.java Fri Jun 29 07:48:00 2007
@@ -59,10 +59,7 @@
 
     /**
      * Constructs a Style record and sets its fields appropriately.
-     *
-     * @param id     id must be 0x293 or an exception will be throw upon validation
-     * @param size  the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public StyleRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/SupBookRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/SupBookRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/SupBookRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/SupBookRecord.java Fri Jun 29 07:48:00 2007
@@ -45,9 +45,7 @@
     /**
      * Constructs a Extern Sheet record and sets its fields appropriately.
      *
-     * @param id     id must be 0x16 or an exception will be throw upon validation
-     * @param size  the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
     public SupBookRecord(RecordInputStream in)
     {
@@ -63,10 +61,7 @@
     }
 
     /**
-     * called by the constructor, should set class level fields.  Should throw
-     * runtime exception for bad/icomplete data.
-     *
-     * @param data raw data
+     * @param in the RecordInputstream to read the record from
      * @param size size of data
      * @param offset of the record's data (provided a big array of the file)
      */

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/TabIdRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/TabIdRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/TabIdRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/TabIdRecord.java Fri Jun 29 07:48:00 2007
@@ -42,10 +42,7 @@
 
     /**
      * Constructs a TabID record and sets its fields appropriately.
-     *
-     * @param id     id must be 0x13d or an exception will be throw upon validation
-     * @param size  the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public TabIdRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/TextObjectBaseRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/TextObjectBaseRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/TextObjectBaseRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/TextObjectBaseRecord.java Fri Jun 29 07:48:00 2007
@@ -72,10 +72,7 @@
     /**
      * Constructs a TextObjectBase record and sets its fields appropriately.
      *
-     * @param id    id must be 0x1B6 or an exception
-     *              will be throw upon validation
-     * @param size  size the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public TextObjectBaseRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/TextRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/TextRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/TextRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/TextRecord.java Fri Jun 29 07:48:00 2007
@@ -95,10 +95,7 @@
     /**
      * Constructs a Text record and sets its fields appropriately.
      *
-     * @param id    id must be 0x1025 or an exception
-     *              will be throw upon validation
-     * @param size  size the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public TextRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/TickRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/TickRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/TickRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/TickRecord.java Fri Jun 29 07:48:00 2007
@@ -60,10 +60,7 @@
     /**
      * Constructs a Tick record and sets its fields appropriately.
      *
-     * @param id    id must be 0x101e or an exception
-     *              will be throw upon validation
-     * @param size  size the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public TickRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/UnicodeString.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/UnicodeString.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/UnicodeString.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/UnicodeString.java Fri Jun 29 07:48:00 2007
@@ -106,9 +106,7 @@
 
     /**
      * construct a unicode string record and fill its fields, ID is ignored
-     * @param id - ignored
-     * @param size - size of the data
-     * @param data - the bytes of the string/fields
+     * @param in the RecordInputstream to read the record from
      */
 
     public UnicodeString(RecordInputStream in)
@@ -201,12 +199,7 @@
     }
 
     /**
-     * called by the constructor, should set class level fields.  Should throw
-     * runtime exception for bad/icomplete data.
-     *
-     * @param data raw data
-     * @param size size of data
-     * @param offset of the records data (provided a big array of the file)
+     * @param in the RecordInputstream to read the record from
      */
     protected void fillFields(RecordInputStream in)
         {

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/UnitsRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/UnitsRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/UnitsRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/UnitsRecord.java Fri Jun 29 07:48:00 2007
@@ -45,12 +45,8 @@
     /**
      * Constructs a Units record and sets its fields appropriately.
      *
-     * @param id    id must be 0x1001 or an exception
-     *              will be throw upon validation
-     * @param size  size the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
-
     public UnitsRecord(RecordInputStream in)
     {
         super(in);

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/UnknownRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/UnknownRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/UnknownRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/UnknownRecord.java Fri Jun 29 07:48:00 2007
@@ -43,8 +43,6 @@
     }
 
     /**
-     * construct an unknown record.  No fields are interperated and the record will
-     * be serialized in its original form more or less
      * @param id    id of the record -not validated, just stored for serialization
      * @param data  the data
      */
@@ -58,9 +56,7 @@
     /**
      * construct an unknown record.  No fields are interperated and the record will
      * be serialized in its original form more or less
-     * @param id    id of the record -not validated, just stored for serialization
-     * @param size  size of the data
-     * @param data  the data
+     * @param in the RecordInputstream to read the record from
      */
 
     public UnknownRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/UseSelFSRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/UseSelFSRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/UseSelFSRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/UseSelFSRecord.java Fri Jun 29 07:48:00 2007
@@ -44,10 +44,7 @@
 
     /**
      * Constructs a UseSelFS record and sets its fields appropriately.
-     *
-     * @param id     id must be 0x160 or an exception will be throw upon validation
-     * @param size  the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public UseSelFSRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/VCenterRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/VCenterRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/VCenterRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/VCenterRecord.java Fri Jun 29 07:48:00 2007
@@ -42,10 +42,7 @@
 
     /**
      * Constructs a VCENTER record and sets its fields appropriately.
-     *
-     * @param id     id must be 0x84 or an exception will be throw upon validation
-     * @param size  the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public VCenterRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/ValueRangeRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/ValueRangeRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/ValueRangeRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/ValueRangeRecord.java Fri Jun 29 07:48:00 2007
@@ -59,10 +59,7 @@
     /**
      * Constructs a ValueRange record and sets its fields appropriately.
      *
-     * @param id    id must be 0x101f or an exception
-     *              will be throw upon validation
-     * @param size  size the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public ValueRangeRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/VerticalPageBreakRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/VerticalPageBreakRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/VerticalPageBreakRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/VerticalPageBreakRecord.java Fri Jun 29 07:48:00 2007
@@ -44,9 +44,7 @@
 	}
 
 	/**
-	 * @param id
-	 * @param size
-	 * @param data
+     * @param in the RecordInputstream to read the record from
 	 */
 	public VerticalPageBreakRecord(RecordInputStream in) {
 		super(in);

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/WSBoolRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/WSBoolRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/WSBoolRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/WSBoolRecord.java Fri Jun 29 07:48:00 2007
@@ -73,10 +73,7 @@
 
     /**
      * Constructs a WSBool record and sets its fields appropriately.
-     *
-     * @param id     id must be 0x81 or an exception will be throw upon validation
-     * @param size  the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public WSBoolRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/WindowOneRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/WindowOneRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/WindowOneRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/WindowOneRecord.java Fri Jun 29 07:48:00 2007
@@ -68,10 +68,7 @@
 
     /**
      * Constructs a WindowOne record and sets its fields appropriately.
-     *
-     * @param id     id must be 0x3d or an exception will be throw upon validation
-     * @param size  the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public WindowOneRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/WindowProtectRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/WindowProtectRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/WindowProtectRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/WindowProtectRecord.java Fri Jun 29 07:48:00 2007
@@ -41,10 +41,7 @@
 
     /**
      * Constructs a WindowProtect record and sets its fields appropriately.
-     *
-     * @param id     id must be 0x19 or an exception will be throw upon validation
-     * @param size  the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public WindowProtectRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/WindowTwoRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/WindowTwoRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/WindowTwoRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/WindowTwoRecord.java Fri Jun 29 07:48:00 2007
@@ -72,10 +72,7 @@
 
     /**
      * Constructs a WindowTwo record and sets its fields appropriately.
-     *
-     * @param id     id must be 0x23e or an exception will be throw upon validation
-     * @param size  the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public WindowTwoRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/WriteAccessRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/WriteAccessRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/WriteAccessRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/WriteAccessRecord.java Fri Jun 29 07:48:00 2007
@@ -44,10 +44,7 @@
 
     /**
      * Constructs a WriteAccess record and sets its fields appropriately.
-     *
-     * @param id     id must be 0x5c or an exception will be throw upon validation
-     * @param size  the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public WriteAccessRecord(RecordInputStream in)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/WriteProtectRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/WriteProtectRecord.java?view=diff&rev=551912&r1=551911&r2=551912
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/WriteProtectRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/WriteProtectRecord.java Fri Jun 29 07:48:00 2007
@@ -40,10 +40,7 @@
 
     /**
      * Constructs a WriteAccess record and sets its fields appropriately.
-     *
-     * @param id     id must be 0x5c or an exception will be throw upon validation
-     * @param size  the size of the data area of the record
-     * @param data  data of the record (should not contain sid/len)
+     * @param in the RecordInputstream to read the record from
      */
 
     public WriteProtectRecord(RecordInputStream in)



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org