Description: Flag specifying whether 1904 date windowing is used. (tick toc tick toc...BOOM!)
REFERENCE: PG 280 Microsoft Excel 97 Developer's Kit (ISBN: 1-57231-498-2)
@author Andrew C. Oliver (acoliver at apache dot org) @version 2.0-pre
250251252253254255256257258259260261
bofRecordType = 0; break; /* Indicates whether to use 1904 Date Windowing or not */ case DateWindow1904Record.sid: DateWindow1904Record dw1904Rec = (DateWindow1904Record)record; use1904windowing = (dw1904Rec.getWindowing() == 1); if (log.isDebugEnabled()) { debug(record, "[" + use1904windowing + "]"); } break;
1192119311941195119611971198119912001201
/** * creates the DateWindow1904 record with windowing set to 0. (don't window) */ private static DateWindow1904Record createDateWindow1904() { DateWindow1904Record retval = new DateWindow1904Record(); retval.setWindowing(( short ) 0); // don't EVER use 1904 date windowing...tick tock.. return retval; }
1193119411951196119711981199120012011202
1220122112221223122412251226122712281229
1260126112621263126412651266126712681269
1191119211931194119511961197119811991200
1219122012211222122312241225122612271228
1204120512061207120812091210121112121213
1252125312541255125612571258125912601261