private static class FrameFactory implements IFrameFactory
{
public ID3v2OutputFrame createUserTextFrame(String value1, String value2)
throws UnsupportedEncodingException, IOException
{
ID3FrameType frameType = ID3FrameType.USERTEXT;
String longFrameID = frameType.longID;
Number frameOrder = frameType.getFrameOrder();
return toFrameText(longFrameID, frameOrder, value1, value2);
}