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