1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package entagged.audioformats.generic;
20
21 /***
22 * This interface extends the default field definition by methods for working
23 * with human readable text.<br>
24 * A TagTextField does not store binary data.
25 *
26 * @author Raphaël Slinckx
27 */
28 public interface TagTextField extends TagField {
29
30 /***
31 * Returns the content of the field.
32 *
33 * @return Content
34 */
35 public String getContent();
36
37 /***
38 * Returns the current used charset encoding.
39 *
40 * @return Charset encoding.
41 */
42 public String getEncoding();
43
44 /***
45 * Sets the content of the field.
46 *
47 * @param content
48 * fields content.
49 */
50 public void setContent(String content);
51
52 /***
53 * Sets the charset encoding used by the field.
54 *
55 * @param encoding
56 * charset.
57 */
58 public void setEncoding(String encoding);
59 }