com.voxbiblia.id3j
Class ID3Tag

java.lang.Object
  extended by com.voxbiblia.id3j.ID3Tag

public class ID3Tag
extends Object

Holds properties that goes into an ID3 tag of an MP3 file.


Constructor Summary
ID3Tag()
           
 
Method Summary
 String getAlbum()
           
 String getArtist()
           
 String getComment()
           
 String getGenre()
           
 String getLyrics()
           
 byte[] getPicture()
           
 String getTitle()
           
 String getTrack()
           
 boolean isCompilation()
           
 void setAlbum(String album)
           
 void setArtist(String artist)
           
 void setComment(String comment)
           
 void setCompilation(boolean compilation)
           
 void setGenre(String genre)
           
 void setLyrics(String lyrics)
           
 void setPicture(byte[] picture)
           
 void setTitle(String title)
           
 void setTrack(String track)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ID3Tag

public ID3Tag()
Method Detail

getArtist

public String getArtist()

setArtist

public void setArtist(String artist)

getTitle

public String getTitle()

setTitle

public void setTitle(String title)

getAlbum

public String getAlbum()

setAlbum

public void setAlbum(String album)

getGenre

public String getGenre()

setGenre

public void setGenre(String genre)

getTrack

public String getTrack()

setTrack

public void setTrack(String track)

getComment

public String getComment()

setComment

public void setComment(String comment)

getLyrics

public String getLyrics()

setLyrics

public void setLyrics(String lyrics)

getPicture

public byte[] getPicture()

setPicture

public void setPicture(byte[] picture)

isCompilation

public boolean isCompilation()

setCompilation

public void setCompilation(boolean compilation)