Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.virtuosotechnologies.asaph.model
Interface SongIDResultSet.Entry  view SongIDResultSet.Entry download SongIDResultSet.Entry.java

Enclosing interface:
SongIDResultSet

public static interface SongIDResultSet.Entry

Interface representing an entry in the set.


Method Summary
 java.lang.Object getData()
          Get the data object for this entry
 Song getSong()
          Check out the Song referenced by this entry.
 SongID getSongID()
          Get the SongID for this entry
 void setData(java.lang.Object data)
          Set the data object for this entry
 

Method Detail

getSongID

public SongID getSongID()
Get the SongID for this entry


getData

public java.lang.Object getData()
Get the data object for this entry


setData

public void setData(java.lang.Object data)
Set the data object for this entry


getSong

public Song getSong()
Check out the Song referenced by this entry. Returns the Song, or null if the checkout fails for some reason. Also caches the value so that subsequent calls will return the cached value rather than checking out the song again. If the first checkout fails, a null value will be cached and returned from subsequent calls (i.e. an entry will try to check out a Song at most once).