Package com.ngt.jopenmetaverse.shared.protocol

Examples of com.ngt.jopenmetaverse.shared.protocol.UUIDNameReplyPacket$UUIDNameBlockBlock


        {
            if (onUUIDNameReply != null)
            {
                Packet packet = e.getPacket();
                Map<UUID, String> names = new HashMap<UUID, String>();
                UUIDNameReplyPacket reply = (UUIDNameReplyPacket)packet;

                for (UUIDNameReplyPacket.UUIDNameBlockBlock block : reply.UUIDNameBlock)
                {
                    names.put(block.ID, Utils.bytesWithTrailingNullByteToString(block.FirstName) +
                        " " + Utils.bytesWithTrailingNullByteToString(block.LastName));
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.UUIDNameReplyPacket$UUIDNameBlockBlock

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.