protected void PickInfoReplyHandler(Object sender, PacketReceivedEventArgs e) throws UnsupportedEncodingException
{
if (onPickInfoReply != null)
{
Packet packet = e.getPacket();
PickInfoReplyPacket p = (PickInfoReplyPacket)packet;
ProfilePick ret = new ProfilePick();
ret.CreatorID = p.Data.CreatorID;
ret.Desc = Utils.bytesWithTrailingNullByteToString(p.Data.Desc);
ret.Enabled = p.Data.Enabled;
ret.Name = Utils.bytesWithTrailingNullByteToString(p.Data.Name);