File: VariableValuesRecord.java

package info (click to toggle)
jcdf 1.2.5%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 572 kB
  • sloc: java: 5,315; makefile: 198; sh: 98
file content (33 lines) | stat: -rw-r--r-- 765 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package uk.ac.bristol.star.cdf.record;

/**
 * Field data for CDF record of type Variable Values Record.
 *
 * @author   Mark Taylor
 * @since    19 Jun 2013
 */
public class VariableValuesRecord extends Record {

    private final long recordsOffset_;

    /**
     * Constructor.
     *
     * @param   plan  basic record information
     */
    public VariableValuesRecord( RecordPlan plan ) {
        super( plan, "VVR", 7 );
        Pointer ptr = plan.createContentPointer();
        recordsOffset_ = ptr.get();
    }

    /**
     * Returns the file offset at which the records data in this record
     * starts.
     *
     * @return  file offset for start of Records field
     */
    public long getRecordsOffset() {
        return recordsOffset_;
    }
}