Methods Summary |
---|
public void | accept(ID3Visitor oID3Visitor)
oID3Visitor.visitTPE2TextInformationID3V2Frame(this);
|
public boolean | equals(java.lang.Object oOther)
if ((oOther == null) || (!(oOther instanceof TPE2TextInformationID3V2Frame)))
{
return false;
}
TPE2TextInformationID3V2Frame oOtherTPE2 = (TPE2TextInformationID3V2Frame)oOther;
return (m_sBandOrchestralAccompaniment.equals(oOtherTPE2.m_sBandOrchestralAccompaniment) &&
m_oTextEncoding.equals(oOtherTPE2.m_oTextEncoding) &&
m_sInformation.equals(oOtherTPE2.m_sInformation));
|
public java.lang.String | getBandOrchestraAccompaniment()Get the band, orchestra or accompaniment in the recording in this track.
return m_sBandOrchestralAccompaniment;
|
protected byte[] | getFrameId()
return "TPE2".getBytes();
|
public void | setBandOrchestraAccompaniment(java.lang.String sBandOrchestraAccompaniment)Set the band, orchestra or accompaniment in the recording in this track.
m_sBandOrchestralAccompaniment = sBandOrchestraAccompaniment;
m_oTextEncoding = TextEncoding.getDefaultTextEncoding();
m_sInformation = sBandOrchestraAccompaniment;
|
public java.lang.String | toString()
return "Band/Orchestra/Accompaniment: [" + m_sInformation + "]";
|