File: AttributeEntry.java

package info (click to toggle)
nexus 4.4.3-9
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 26,864 kB
  • sloc: cpp: 34,928; ansic: 17,317; f90: 2,326; xml: 2,071; java: 1,953; fortran: 1,529; python: 766; makefile: 532; sh: 460; tcl: 173; lisp: 169
file content (17 lines) | stat: -rw-r--r-- 409 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
  * This is a little helper class which holds additional information about
  * a dataset or global attribute.
  *
  * @see NeXusFileInterface.
  *
  * copyright: see acompanying COPYRIGHT file.
  */
package org.nexusformat;

public class AttributeEntry {
    /**
      * length is the length of the attribute.
      * type is the number type of the attribute.
      */
  public int length, type, dim[];
}