Changeset 3418


Ignore:
Timestamp:
May 31, 2007, 11:20:38 AM (16 years ago)
Author:
Nicklas Nordborg
Message:

API change in FlatFileParser?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/src/docbook/appendix/incompatible.xml

    r3415 r3418  
    4949    <title>BASE 2.3 release</title>
    5050   
     51    <bridgehead>FlatFileParser</bridgehead>
     52    <para>
     53      The <methodname>hasMoreData()</methodname> method has changed the
     54      order of checks made to determine the line type. The checks are
     55      now made in the following order:
     56     
     57      <orderedlist>
     58      <listitem>
     59        <para>
     60        Check if the line should be ignored.
     61        </para>
     62      </listitem>
     63      <listitem>
     64        <para>
     65        Check if the line is a data footer.
     66        </para>
     67      </listitem>
     68      <listitem>
     69        <para>
     70        Check if the line is the start of a new section.
     71        </para>
     72      </listitem>
     73      <listitem>
     74        <para>
     75        Check if the line is a data line.
     76        </para>
     77      </listitem>
     78      </orderedlist>
     79      The data line check has been moved to the last since it was difficult
     80      to create settings that made sure section and data footer lines where
     81      matched correctly.
     82    </para>
     83
    5184    <bridgehead>BASE 1 Plug-in executer</bridgehead>
    5285   
Note: See TracChangeset for help on using the changeset viewer.