package org.farng.mp3.id3; import java.io.RandomAccessFile; import org.farng.mp3.InvalidTagException; /** * <div class=h5>TDAT</div> * <p/> * <div class=t>The 'Date' frame is a numeric string in the DDMM format containing the date for the recording. This * field is always four characters long.</div> * <p/> * <p/> * <a name="TDLY"> </a> * * @author Eric Farng * @version $Revision: 2374 $ */ public class FrameBodyTDAT extends AbstractFrameBodyTextInformation { /** * Creates a new FrameBodyTDAT object. */ public FrameBodyTDAT() { super(); } /** * Creates a new FrameBodyTDAT object. */ public FrameBodyTDAT(final FrameBodyTDAT body) { super(body); } /** * Creates a new FrameBodyTDAT object. */ public FrameBodyTDAT(final byte textEncoding, final String text) { super(textEncoding, text); } /** * Creates a new FrameBodyTDAT object. */ public FrameBodyTDAT(final RandomAccessFile file) throws java.io.IOException, InvalidTagException { super(file); } public String getIdentifier() { return "TDAT"; } }