package org.farng.mp3.id3; import java.io.RandomAccessFile; import org.farng.mp3.InvalidTagException; /** *    The 'Official Internet radio station homepage' contains a URL<br>    pointing at the homepage * of the internet radio station.</p> * * @author Eric Farng * @version $Revision: 2374 $ */ public class FrameBodyWORS extends AbstractFrameBodyUrlLink { /** * Creates a new FrameBodyWORS object. */ public FrameBodyWORS() { super(); } /** * Creates a new FrameBodyWORS object. */ public FrameBodyWORS(final String urlLink) { super(urlLink); } /** * Creates a new FrameBodyWORS object. */ public FrameBodyWORS(final FrameBodyWORS body) { super(body); } /** * Creates a new FrameBodyWORS object. */ public FrameBodyWORS(final RandomAccessFile file) throws java.io.IOException, InvalidTagException { super(file); } public String getIdentifier() { return "WORS"; } }