summaryrefslogtreecommitdiffstats
path: root/java/src/hdf/hdf5lib/structs/H5F_info2_t.java
blob: 8fbde68fdd7c77ecea686332a2071b761a019cec (plain)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Copyright by The HDF Group.                                               *
 * Copyright by the Board of Trustees of the University of Illinois.         *
 * All rights reserved.                                                      *
 *                                                                           *
 * This file is part of HDF5.  The full HDF5 copyright notice, including     *
 * terms governing use, modification, and redistribution, is contained in    *
 * the files COPYING and Copyright.html.  COPYING can be found at the root   *
 * of the source code distribution tree; Copyright.html can be found at the  *
 * root level of an installed copy of the electronic HDF5 document set and   *
 * is linked from the top-level documents page.  It can also be found at     *
 * http://hdfgroup.org/HDF5/doc/Copyright.html.  If you do not have          *
 * access to either file, you may request a copy from help@hdfgroup.org.     *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

package hdf.hdf5lib.structs;

import java.io.Serializable;

//Information struct for object (for H5Fget_info)
public class H5F_info2_t implements Serializable{
    private static final long serialVersionUID = 4691681162544054518L;
    public int         super_version;    // Superblock version #
    public long        super_size;    // Superblock size
    public long        super_ext_size;    // Superblock extension size
    public int         free_version;    // Version # of file free space management
    public long        free_meta_size;    // Free space manager metadata size
    public long        free_tot_space;    // Amount of free space in the file
    public int         sohm_version;    // Version # of shared object header info
    public long        sohm_hdr_size;       // Shared object header message header size
    public H5_ih_info_t    sohm_msgs_info;      // Shared object header message index & heap size

    public H5F_info2_t (int super_version, long super_size, long super_ext_size,
        int free_version, long free_meta_size, long free_tot_space,
        int sohm_version, long sohm_hdr_size, H5_ih_info_t sohm_msgs_info)
    {
        this.super_version = super_version;
        this.super_size = super_size;
        this.super_ext_size = super_ext_size;
        this.free_version = free_version;
        this.free_meta_size = free_meta_size;
        this.free_tot_space = free_tot_space;
        this.sohm_version = sohm_version;
        this.sohm_hdr_size = sohm_hdr_size;
        this.sohm_msgs_info = sohm_msgs_info;
    }
}