~ubuntu-branches/ubuntu/utopic/libjaudiotagger-java/utopic

« back to all changes in this revision

Viewing changes to src/org/jaudiotagger/tag/id3/framebody/FrameBodyTCON.java

  • Committer: Bazaar Package Importer
  • Author(s): Damien Raude-Morvan
  • Date: 2011-04-28 23:52:43 UTC
  • mfrom: (3.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20110428235243-pzalvw6lncis3ukf
Tags: 2.0.3-1
* d/control: Drop Depends on default-jre per Debian Java Policy as its
  a library package.
* d/watch: Fix to directly monitor SVN tags.
* Switch to 3.0 (quilt) format.
* Bump Standards-Version to 3.9.2 (no changes needed).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *  MusicTag Copyright (C)2003,2004
3
 
 *
4
 
 *  This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser
5
 
 *  General Public  License as published by the Free Software Foundation; either version 2.1 of the License,
6
 
 *  or (at your option) any later version.
7
 
 *
8
 
 *  This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
9
 
 *  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10
 
 *  See the GNU Lesser General Public License for more details.
11
 
 *
12
 
 *  You should have received a copy of the GNU Lesser General Public License along with this library; if not,
13
 
 *  you can get a copy from http://www.opensource.org/licenses/lgpl-license.php or write to the Free Software
14
 
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15
 
 */
16
 
package org.jaudiotagger.tag.id3.framebody;
17
 
 
18
 
import org.jaudiotagger.tag.InvalidTagException;
19
 
import org.jaudiotagger.tag.id3.ID3v24Frames;
20
 
 
21
 
import java.nio.ByteBuffer;
22
 
 
23
 
/**
24
 
 * Content type Text information frame.
25
 
 * <p/>
26
 
 * <p>The 'Content type', which previously was
27
 
 * stored as a one byte numeric value only, is now a numeric string. You
28
 
 * may use one or several of the types as ID3v1.1 did or, since the
29
 
 * category list would be impossible to maintain with accurate and up to
30
 
 * date categories, define your own.
31
 
 * </p><p>
32
 
 * ID3V23:References to the ID3v1 genres can be made by, as first byte, enter
33
 
 * "(" followed by a number from the genres list (appendix A) and
34
 
 * ended with a ")" character. This is optionally followed by a
35
 
 * refinement, e.g. "(21)" or "(4)Eurodisco". Several references can be
36
 
 * made in the same frame, e.g. "(51)(39)". If the refinement should
37
 
 * begin with a "(" character it should be replaced with "((", e.g. "((I
38
 
 * can figure out any genre)" or "(55)((I think...)". The following new
39
 
 * content types is defined in ID3v2 and is implemented in the same way
40
 
 * as the numeric content types, e.g. "(RX)".
41
 
 * </p><p><table border=0 width="70%">
42
 
 * <tr><td>RX</td><td width="100%">Remix</td></tr>
43
 
 * <tr><td>CR</td><td>Cover</td></tr>
44
 
 * </table></p>
45
 
 * <p/>
46
 
 * <p>For more details, please refer to the ID3 specifications:
47
 
 * <ul>
48
 
 * <li><a href="http://www.id3.org/id3v2.3.0.txt">ID3 v2.3.0 Spec</a>
49
 
 * </ul>
50
 
 * <p/>
51
 
 * ID3V24:The 'Content type', which ID3v1 was stored as a one byte numeric
52
 
 * value only, is now a string. You may use one or several of the ID3v1
53
 
 * types as numerical strings, or, since the category list would be
54
 
 * impossible to maintain with accurate and up to date categories,
55
 
 * define your own. Example: "21" $00 "Eurodisco" $00
56
 
 * <p/>
57
 
 * You may also use any of the following keywords:
58
 
 * </p><p><table border=0 width="70%">
59
 
 * <tr><td>RX</td><td width="100%">Remix</td></tr>
60
 
 * <tr><td>CR</td><td>Cover</td></tr>
61
 
 * </table></p>
62
 
 *
63
 
 * @author : Paul Taylor
64
 
 * @author : Eric Farng
65
 
 * @version $Id: FrameBodyTCON.java,v 1.15 2009/11/12 13:25:19 paultaylor Exp $
66
 
 */
67
 
public class FrameBodyTCON extends AbstractFrameBodyTextInfo implements ID3v24FrameBody, ID3v23FrameBody
68
 
{
69
 
    /**
70
 
     * Creates a new FrameBodyTCON datatype.
71
 
     */
72
 
    public FrameBodyTCON()
73
 
    {
74
 
    }
75
 
 
76
 
    public FrameBodyTCON(FrameBodyTCON body)
77
 
    {
78
 
        super(body);
79
 
    }
80
 
 
81
 
    /**
82
 
     * Creates a new FrameBodyTCON datatype.
83
 
     *
84
 
     * @param textEncoding
85
 
     * @param text
86
 
     */
87
 
    public FrameBodyTCON(byte textEncoding, String text)
88
 
    {
89
 
        super(textEncoding, text);
90
 
    }
91
 
 
92
 
    /**
93
 
     * Creates a new FrameBodyTCON datatype.
94
 
     *
95
 
     * @param byteBuffer
96
 
     * @param frameSize
97
 
     * @throws InvalidTagException
98
 
     */
99
 
    public FrameBodyTCON(ByteBuffer byteBuffer, int frameSize) throws InvalidTagException
100
 
    {
101
 
        super(byteBuffer, frameSize);
102
 
    }
103
 
 
104
 
 
105
 
    /**
106
 
     * The ID3v2 frame identifier
107
 
     *
108
 
     * @return the ID3v2 frame identifier  for this frame type
109
 
     */
110
 
    public String getIdentifier()
111
 
    {
112
 
        return ID3v24Frames.FRAME_ID_GENRE;
113
 
    }
114
 
}
 
1
/*
 
2
 *  MusicTag Copyright (C)2003,2004
 
3
 *
 
4
 *  This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser
 
5
 *  General Public  License as published by the Free Software Foundation; either version 2.1 of the License,
 
6
 *  or (at your option) any later version.
 
7
 *
 
8
 *  This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
 
9
 *  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
10
 *  See the GNU Lesser General Public License for more details.
 
11
 *
 
12
 *  You should have received a copy of the GNU Lesser General Public License along with this library; if not,
 
13
 *  you can get a copy from http://www.opensource.org/licenses/lgpl-license.php or write to the Free Software
 
14
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
15
 */
 
16
package org.jaudiotagger.tag.id3.framebody;
 
17
 
 
18
import org.jaudiotagger.tag.InvalidTagException;
 
19
import org.jaudiotagger.tag.id3.ID3v24Frames;
 
20
 
 
21
import java.nio.ByteBuffer;
 
22
 
 
23
/**
 
24
 * Content type Text information frame.
 
25
 * <p/>
 
26
 * <p>The 'Content type', which previously was
 
27
 * stored as a one byte numeric value only, is now a numeric string. You
 
28
 * may use one or several of the types as ID3v1.1 did or, since the
 
29
 * category list would be impossible to maintain with accurate and up to
 
30
 * date categories, define your own.
 
31
 * </p><p>
 
32
 * ID3V23:References to the ID3v1 genres can be made by, as first byte, enter
 
33
 * "(" followed by a number from the genres list (appendix A) and
 
34
 * ended with a ")" character. This is optionally followed by a
 
35
 * refinement, e.g. "(21)" or "(4)Eurodisco". Several references can be
 
36
 * made in the same frame, e.g. "(51)(39)". If the refinement should
 
37
 * begin with a "(" character it should be replaced with "((", e.g. "((I
 
38
 * can figure out any genre)" or "(55)((I think...)". The following new
 
39
 * content types is defined in ID3v2 and is implemented in the same way
 
40
 * as the numeric content types, e.g. "(RX)".
 
41
 * </p><p><table border=0 width="70%">
 
42
 * <tr><td>RX</td><td width="100%">Remix</td></tr>
 
43
 * <tr><td>CR</td><td>Cover</td></tr>
 
44
 * </table></p>
 
45
 * <p/>
 
46
 * <p>For more details, please refer to the ID3 specifications:
 
47
 * <ul>
 
48
 * <li><a href="http://www.id3.org/id3v2.3.0.txt">ID3 v2.3.0 Spec</a>
 
49
 * </ul>
 
50
 * <p/>
 
51
 * ID3V24:The 'Content type', which ID3v1 was stored as a one byte numeric
 
52
 * value only, is now a string. You may use one or several of the ID3v1
 
53
 * types as numerical strings, or, since the category list would be
 
54
 * impossible to maintain with accurate and up to date categories,
 
55
 * define your own. Example: "21" $00 "Eurodisco" $00
 
56
 * <p/>
 
57
 * You may also use any of the following keywords:
 
58
 * </p><p><table border=0 width="70%">
 
59
 * <tr><td>RX</td><td width="100%">Remix</td></tr>
 
60
 * <tr><td>CR</td><td>Cover</td></tr>
 
61
 * </table></p>
 
62
 *
 
63
 * @author : Paul Taylor
 
64
 * @author : Eric Farng
 
65
 * @version $Id: FrameBodyTCON.java 832 2009-11-12 13:25:38Z paultaylor $
 
66
 */
 
67
public class FrameBodyTCON extends AbstractFrameBodyTextInfo implements ID3v24FrameBody, ID3v23FrameBody
 
68
{
 
69
    /**
 
70
     * Creates a new FrameBodyTCON datatype.
 
71
     */
 
72
    public FrameBodyTCON()
 
73
    {
 
74
    }
 
75
 
 
76
    public FrameBodyTCON(FrameBodyTCON body)
 
77
    {
 
78
        super(body);
 
79
    }
 
80
 
 
81
    /**
 
82
     * Creates a new FrameBodyTCON datatype.
 
83
     *
 
84
     * @param textEncoding
 
85
     * @param text
 
86
     */
 
87
    public FrameBodyTCON(byte textEncoding, String text)
 
88
    {
 
89
        super(textEncoding, text);
 
90
    }
 
91
 
 
92
    /**
 
93
     * Creates a new FrameBodyTCON datatype.
 
94
     *
 
95
     * @param byteBuffer
 
96
     * @param frameSize
 
97
     * @throws InvalidTagException
 
98
     */
 
99
    public FrameBodyTCON(ByteBuffer byteBuffer, int frameSize) throws InvalidTagException
 
100
    {
 
101
        super(byteBuffer, frameSize);
 
102
    }
 
103
 
 
104
 
 
105
    /**
 
106
     * The ID3v2 frame identifier
 
107
     *
 
108
     * @return the ID3v2 frame identifier  for this frame type
 
109
     */
 
110
    public String getIdentifier()
 
111
    {
 
112
        return ID3v24Frames.FRAME_ID_GENRE;
 
113
    }
 
114
}