protected void ClassifiedInfoReplyHandler(Object sender, PacketReceivedEventArgs e) throws UnsupportedEncodingException
{
if (onAvatarClassifiedReply != null)
{
Packet packet = e.getPacket();
ClassifiedInfoReplyPacket p = (ClassifiedInfoReplyPacket)packet;
ClassifiedAd ret = new ClassifiedAd();
ret.Desc = Utils.bytesWithTrailingNullByteToString(p.Data.Desc);
ret.Name = Utils.bytesWithTrailingNullByteToString(p.Data.Name);
ret.ParcelID = p.Data.ParcelID;
ret.ClassifiedID = p.Data.ClassifiedID;