Methods Summary |
---|
public void | accept(ID3Visitor oID3Visitor)
oID3Visitor.visitTPE3TextInformationID3V2Frame(this);
|
public boolean | equals(java.lang.Object oOther)
if ((oOther == null) || (!(oOther instanceof TPE3TextInformationID3V2Frame)))
{
return false;
}
TPE3TextInformationID3V2Frame oOtherTPE3 = (TPE3TextInformationID3V2Frame)oOther;
return (m_sConductor.equals(oOtherTPE3.m_sConductor) &&
m_oTextEncoding.equals(oOtherTPE3.m_oTextEncoding) &&
m_sInformation.equals(oOtherTPE3.m_sInformation));
|
public java.lang.String | getConductor()Get the conductor of the recording in this track.
return m_sConductor;
|
protected byte[] | getFrameId()
return "TPE3".getBytes();
|
public void | setConductor(java.lang.String sConductor)Set the conductor of the recording in this track.
m_sConductor = sConductor;
m_oTextEncoding = TextEncoding.getDefaultTextEncoding();
m_sInformation = sConductor;
|
public java.lang.String | toString()
return "Conductor: [" + m_sInformation + "]";
|