Package org.cmc.music.common

Examples of org.cmc.music.common.ID3ReadException


    for (int i = 0; i < frames.size(); i++)
    {
      MyID3v2Frame frame = (MyID3v2Frame) frames.get(i);

      if (strict)
        throw new ID3ReadException("Could not translate frame: "
            + frame.frameID);
      else if (null != listener)
        listener.log("Could not translate frame", frame.frameID);
    }
View Full Code Here


        if (frameType.matches(frame.frameID))
        {
          if (translated.size() > 0)
          {
            if (strict)
              throw new ID3ReadException(
                  "Unexpected duplicate frame: "
                      + frame.frameID);
            else if (listener != null)
              listener.log("Unexpected duplicate frame",
                  frame.frameID);
View Full Code Here

TOP

Related Classes of org.cmc.music.common.ID3ReadException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.