1 | package org.farng.mp3.id3; |
2 | |
3 | import org.farng.mp3.InvalidTagException; |
4 | |
5 | import java.io.RandomAccessFile; |
6 | |
7 | /** |
8 | * The 'Official artist/performer webpage' frame is a URL pointing at<br> the artists official |
9 | * webpage. There may be more than one "WOAR" frame<br> in a tag if the audio contains more than |
10 | * one performer, but not with<br> the same content.</p> |
11 | * |
12 | * @author Eric Farng |
13 | * @version $Revision: 1.4 $ |
14 | */ |
15 | public class FrameBodyWOAR extends AbstractFrameBodyUrlLink { |
16 | |
17 | /** |
18 | * Creates a new FrameBodyWOAR object. |
19 | */ |
20 | public FrameBodyWOAR() { |
21 | super(); |
22 | } |
23 | |
24 | /** |
25 | * Creates a new FrameBodyWOAR object. |
26 | */ |
27 | public FrameBodyWOAR(final String urlLink) { |
28 | super(urlLink); |
29 | } |
30 | |
31 | /** |
32 | * Creates a new FrameBodyWOAR object. |
33 | */ |
34 | public FrameBodyWOAR(final FrameBodyWOAR body) { |
35 | super(body); |
36 | } |
37 | |
38 | /** |
39 | * Creates a new FrameBodyWOAR object. |
40 | */ |
41 | public FrameBodyWOAR(final RandomAccessFile file) throws java.io.IOException, InvalidTagException { |
42 | super(file); |
43 | } |
44 | |
45 | public String getIdentifier() { |
46 | return "WOAR" + ((char) 0) + getUrlLink(); |
47 | } |
48 | } |