Methods Summary |
---|
public void | accept(ID3Visitor oID3Visitor)
oID3Visitor.visitTPE4TextInformationID3V2Frame(this);
|
public boolean | equals(java.lang.Object oOther)
if ((oOther == null) || (!(oOther instanceof TPE4TextInformationID3V2Frame)))
{
return false;
}
TPE4TextInformationID3V2Frame oOtherTPE4 = (TPE4TextInformationID3V2Frame)oOther;
return (m_sModifiedBy.equals(oOtherTPE4.m_sModifiedBy) &&
m_oTextEncoding.equals(oOtherTPE4.m_oTextEncoding) &&
m_sInformation.equals(oOtherTPE4.m_sInformation));
|
protected byte[] | getFrameId()
return "TPE4".getBytes();
|
public java.lang.String | getModifiedBy()Get the interpreter, remixer or modifier of the recording in this track.
return m_sModifiedBy;
|
public void | setModifiedBy(java.lang.String sModifiedBy)Set the interpreter, remixer or modifier of the recording in this track.
m_sModifiedBy = sModifiedBy;
m_oTextEncoding = TextEncoding.getDefaultTextEncoding();
m_sInformation = sModifiedBy;
|
public java.lang.String | toString()
return "Interpreted, remixed, or otherwise modified by: [" + m_sInformation + "]";
|