Package com.ngt.jopenmetaverse.shared.protocol

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


        protected void AvatarClassifiedReplyHandler(Object sender, PacketReceivedEventArgs e) throws UnsupportedEncodingException
        {
            if (onAvatarClassifiedReply != null)
            {
                Packet packet = e.getPacket();
                AvatarClassifiedReplyPacket p = (AvatarClassifiedReplyPacket)packet;
                Map<UUID, String> classifieds = new HashMap<UUID, String>();

                for (AvatarClassifiedReplyPacket.DataBlock b : p.Data)
                {
                    classifieds.put(b.ClassifiedID, Utils.bytesWithTrailingNullByteToString(b.Name));
View Full Code Here

TOP

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