All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class de.vdheide.mp3.TagContent

java.lang.Object
   |
   +----de.vdheide.mp3.TagContent

public class TagContent
extends Object

Constructor Index

 o TagContent()
Create a new instance with all fields set to null.

Method Index

 o getBinaryContent()
Get content
 o getBinarySubtype()
Get subtype
 o getDescription()
Get description
 o getTextContent()
Get content
 o getTextSubtype()
Get subtype
 o getType()
Get type
 o setContent(byte[])
Set content field with binary data
 o setContent(String)
Set content field with textual data
 o setDescription(String)
Set description field
 o setSubtype(byte[])
Set subtype field with binary data
 o setSubtype(String)
Set subtype field with textual data
 o setType(String)
Set type field

Constructors

 o TagContent
 public TagContent()
Create a new instance with all fields set to null.

Methods

 o setType
 public void setType(String type)
Set type field

Parameters:
type - Type to set
 o getType
 public String getType()
Get type

 o setSubtype
 public void setSubtype(String subtype)
Set subtype field with textual data

Parameters:
subtype - Subtype to set
 o setSubtype
 public void setSubtype(byte subtype[])
Set subtype field with binary data

Parameters:
subtype - Subtype to set
 o getTextSubtype
 public String getTextSubtype()
Get subtype

Returns:
Textual subtype
 o getBinarySubtype
 public byte[] getBinarySubtype()
Get subtype

Returns:
Binary subtype
 o setDescription
 public void setDescription(String desc)
Set description field

Parameters:
desc - Description to set
 o getDescription
 public String getDescription()
Get description

Returns:
Description
 o setContent
 public void setContent(String content)
Set content field with textual data

Parameters:
content - Content to set
 o setContent
 public void setContent(byte content[])
Set content field with binary data

Parameters:
content - Content to set
 o getTextContent
 public String getTextContent()
Get content

Returns:
Textual content
 o getBinaryContent
 public byte[] getBinaryContent()
Get content

Returns:
Binary content

All Packages  Class Hierarchy  This Package  Previous  Next  Index