Methods Summary |
---|
public void | accept(ID3Visitor oID3Visitor)
oID3Visitor.visitTENCTextInformationID3V2Frame(this);
|
public boolean | equals(java.lang.Object oOther)
if ((oOther == null) || (!(oOther instanceof TENCTextInformationID3V2Frame)))
{
return false;
}
TENCTextInformationID3V2Frame oOtherTENC = (TENCTextInformationID3V2Frame)oOther;
return (m_sEncodedBy.equals(oOtherTENC.m_sEncodedBy) &&
m_oTextEncoding.equals(oOtherTENC.m_oTextEncoding) &&
m_sInformation.equals(oOtherTENC.m_sInformation));
|
public java.lang.String | getEncodedBy()Get the identity of the encoder of this file.
return m_sEncodedBy;
|
protected byte[] | getFrameId()
return "TENC".getBytes();
|
public void | setEncodedBy(java.lang.String sEncodedBy)Set the identity of the encoder of this file.
m_oTextEncoding = TextEncoding.getDefaultTextEncoding();
m_sInformation = sEncodedBy;
m_sEncodedBy = sEncodedBy;
|
public java.lang.String | toString()
return "Encoded by: [" + m_sInformation + "]";
|