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
-
TagContent()
- Create a new instance with all fields set to null.
-
getBinaryContent()
- Get content
-
getBinarySubtype()
- Get subtype
-
getDescription()
- Get description
-
getTextContent()
- Get content
-
getTextSubtype()
- Get subtype
-
getType()
-
Get type
-
setContent(byte[])
- Set content field with binary data
-
setContent(String)
- Set content field with textual data
-
setDescription(String)
- Set description field
-
setSubtype(byte[])
- Set subtype field with binary data
-
setSubtype(String)
- Set subtype field with textual data
-
setType(String)
- Set type field
TagContent
public TagContent()
- Create a new instance with all fields set to null.
setType
public void setType(String type)
- Set type field
- Parameters:
- type - Type to set
getType
public String getType()
- Get type
setSubtype
public void setSubtype(String subtype)
- Set subtype field with textual data
- Parameters:
- subtype - Subtype to set
setSubtype
public void setSubtype(byte subtype[])
- Set subtype field with binary data
- Parameters:
- subtype - Subtype to set
getTextSubtype
public String getTextSubtype()
- Get subtype
- Returns:
- Textual subtype
getBinarySubtype
public byte[] getBinarySubtype()
- Get subtype
- Returns:
- Binary subtype
setDescription
public void setDescription(String desc)
- Set description field
- Parameters:
- desc - Description to set
getDescription
public String getDescription()
- Get description
- Returns:
- Description
setContent
public void setContent(String content)
- Set content field with textual data
- Parameters:
- content - Content to set
setContent
public void setContent(byte content[])
- Set content field with binary data
- Parameters:
- content - Content to set
getTextContent
public String getTextContent()
- Get content
- Returns:
- Textual content
getBinaryContent
public byte[] getBinaryContent()
- Get content
- Returns:
- Binary content
All Packages Class Hierarchy This Package Previous Next Index