Package com.ngt.jopenmetaverse.shared.protocol

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


  protected void DirGroupsReplyHandler(Object sender, PacketReceivedEventArgs e) throws UnsupportedEncodingException
  {
    if (OnDirGroups != null)
    {
      Packet packet = e.getPacket();
      DirGroupsReplyPacket groupsReply = (DirGroupsReplyPacket)packet;
      List<GroupSearchData> matches = new ArrayList<GroupSearchData>(groupsReply.QueryReplies.length);
      for (DirGroupsReplyPacket.QueryRepliesBlock reply : groupsReply.QueryReplies)
      {
        GroupSearchData groupsData = new GroupSearchData();
        groupsData.GroupID = reply.GroupID;
View Full Code Here

TOP

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

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.