Package com.ngt.jopenmetaverse.shared.protocol

Examples of com.ngt.jopenmetaverse.shared.protocol.InventoryDescendentsPacket


  /// <param name="e">The EventArgs Object containing the packet data</param>
  protected void InventoryDescendentsHandler(Object sender, PacketReceivedEventArgs e) throws UnsupportedEncodingException, InventoryException
  {
    Packet packet = e.getPacket();

    InventoryDescendentsPacket reply = (InventoryDescendentsPacket)packet;

    if (reply.AgentData.Descendents > 0)
    {
      // InventoryDescendantsReply sends a null folder if the parent doesnt contain any folders
      if (!reply.FolderData[0].FolderID.equals(UUID.Zero))
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.InventoryDescendentsPacket

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.