Package com.ngt.jopenmetaverse.shared.protocol

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


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

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.ClassifiedInfoReplyPacket$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.