package org.farng.mp3.id3; import java.io.RandomAccessFile; import org.farng.mp3.InvalidTagException; /** *    The 'Software/Hardware and settings used for encoding' frame<br> * <p/> *    includes the used audio encoder and its settings when the file was<br>    encoded. Hardware * refers to hardware encoders, not the computer on<br>    which a program was run.</p> * * @author Eric Farng * @version $Revision: 2374 $ */ public class FrameBodyTSSE extends AbstractFrameBodyTextInformation { /** * Creates a new FrameBodyTSSE object. */ public FrameBodyTSSE() { super(); } /** * Creates a new FrameBodyTSSE object. */ public FrameBodyTSSE(final FrameBodyTSSE body) { super(body); } /** * Creates a new FrameBodyTSSE object. */ public FrameBodyTSSE(final byte textEncoding, final String text) { super(textEncoding, text); } /** * Creates a new FrameBodyTSSE object. */ public FrameBodyTSSE(final RandomAccessFile file) throws java.io.IOException, InvalidTagException { super(file); } public String getIdentifier() { return "TSSE"; } }