View | Details | Raw Unified | Return to bug 44510
Collapse All | Expand All

(-)C:\josh\source\poi\subv\trunk/src/java/org/apache/poi/hssf/record/DVALRecord.java (-9 / +7 lines)
Lines 1-4 Link Here
1
2
/* ====================================================================
1
/* ====================================================================
3
   Copyright 2002-2004   Apache Software Foundation
2
   Copyright 2002-2004   Apache Software Foundation
4
3
Lines 20-32 Link Here
20
import org.apache.poi.util.LittleEndian;
19
import org.apache.poi.util.LittleEndian;
21
20
22
/**
21
/**
23
 * Title:        DVAL Record<P>
22
 * Title:        DATAVALIDATIONS Record<P>
24
 * Description:  used in data validation ;
23
 * Description:  used in data validation ;
25
 *               This record is the list header of all data validation records in the current sheet.
24
 *               This record is the list header of all data validation records (0x01BE) in the current sheet.
26
 * @author Dragos Buleandra (dragos.buleandra@trade2b.ro)
25
 * @author Dragos Buleandra (dragos.buleandra@trade2b.ro)
27
 * @version 2.0-pre
28
 */
26
 */
29
30
public class DVALRecord extends Record
27
public class DVALRecord extends Record
31
{
28
{
32
	public final static short sid = 0x01B2;
29
	public final static short sid = 0x01B2;
Lines 41-53 Link Here
41
	/** Object ID of the drop down arrow object for list boxes ;
38
	/** Object ID of the drop down arrow object for list boxes ;
42
	 * in our case this will be always FFFF , until
39
	 * in our case this will be always FFFF , until
43
	 * MSODrawingGroup and MSODrawing records are implemented */
40
	 * MSODrawingGroup and MSODrawing records are implemented */
44
	private int  field_cbo_id      = 0xFFFFFFFF;
41
	private int  field_cbo_id;
45
42
46
	/** Number of following DV Records */
43
	/** Number of following DV Records */
47
	private int  field_5_dv_no     = 0x00000000;
44
	private int  field_5_dv_no;
48
45
49
    public DVALRecord()
46
    public DVALRecord() {
50
    {
47
        field_cbo_id = 0xFFFFFFFF;
48
        field_5_dv_no = 0x00000000;
51
    }
49
    }
52
50
53
    /**
51
    /**

Return to bug 44510