Package com.ngt.jopenmetaverse.shared.protocol

Examples of com.ngt.jopenmetaverse.shared.protocol.PickInfoReplyPacket$DataBlock


        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);
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.PickInfoReplyPacket$DataBlock

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.