package org.farng.mp3.id3;
import java.io.RandomAccessFile;
import org.farng.mp3.InvalidTagException;
/**
* The 'Initial key' frame contains the musical key in which the sound<br> starts. It is
* represented as a string with a maximum length of three<br>
* <p/>
* characters. The ground keys are represented with "A","B","C","D","E",
* <br> "F" and "G" and halfkeys represented with "b" and "#".
* Minor is<br>
* <p/>
* represented as "m", e.g. "Dbm" $00. Off key is represented with an<br>
* "o" only.</p>
*
* @author Eric Farng
* @version $Revision: 2374 $
*/
public class FrameBodyTKEY extends AbstractFrameBodyTextInformation {
/**
* Creates a new FrameBodyTKEY object.
*/
public FrameBodyTKEY() {
super();
}
/**
* Creates a new FrameBodyTKEY object.
*/
public FrameBodyTKEY(final FrameBodyTKEY body) {
super(body);
}
/**
* Creates a new FrameBodyTKEY object.
*/
public FrameBodyTKEY(final byte textEncoding, final String text) {
super(textEncoding, text);
}
/**
* Creates a new FrameBodyTKEY object.
*/
public FrameBodyTKEY(final RandomAccessFile file) throws java.io.IOException, InvalidTagException {
super(file);
}
public String getIdentifier() {
return "TKEY";
}
}