edu.harvard.hul.ois.jhove.module.aiff.NameChunk Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jhove-modules Show documentation
Show all versions of jhove-modules Show documentation
The JHOVE HUL validation modules.
/**********************************************************************
* Jhove - JSTOR/Harvard Object Validation Environment
* Copyright 2004 by JSTOR and the President and Fellows of Harvard College
**********************************************************************/
package edu.harvard.hul.ois.jhove.module.aiff;
import java.io.DataInputStream;
import edu.harvard.hul.ois.jhove.module.AiffModule;
import edu.harvard.hul.ois.jhove.module.iff.*;
/**
* Implementation of the AIFF Name Chunk.
*
* @author Gary McGath
*
*/
public class NameChunk extends TextChunk {
/**
* Constructor.
*
* @param module The AIFFModule under which this was called
* @param hdr The header for this chunk
* @param dstrm The stream from which the AIFF data are being read
*/
public NameChunk(
AiffModule module,
ChunkHeader hdr,
DataInputStream dstrm)
{
super(module, hdr, dstrm);
propName = "Name";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy