KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > jxl > biff > ContinueRecord


1 /*********************************************************************
2 *
3 * Copyright (C) 2004 Andrew Khan
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 ***************************************************************************/

19
20 package jxl.biff;
21
22 import jxl.read.biff.Record;
23
24 /**
25  * A continue record - only used explicitly in special circumstances, as
26  * the general continuation record is handled directly by the records
27  */

28 public class ContinueRecord extends WritableRecordData
29 {
30   /**
31    * The data
32    */

33   private byte[] data;
34
35   /**
36    * Constructor
37    *
38    * @param t the raw bytes
39    */

40   public ContinueRecord(Record t)
41   {
42     super(t);
43     data = t.getData();
44   }
45
46   /**
47    * Constructor invoked when creating continue records
48    *
49    * @param d the data
50    */

51   public ContinueRecord(byte[] d)
52   {
53     super(Type.CONTINUE);
54     data = d;
55   }
56
57   /**
58    * Accessor for the binary data - used when copying
59    *
60    * @return the binary data
61    */

62   public byte[] getData()
63   {
64     return data;
65   }
66
67 }
68
Popular Tags