Package com.ngt.jopenmetaverse.shared.sim.message.LindenMessages

Examples of com.ngt.jopenmetaverse.shared.sim.message.LindenMessages.PlacesReplyMessage


  /// <param name="simulator">The simulator the message originated from</param>
  protected void PlacesReplyEventHandler(String capsKey, IMessage message, Simulator simulator)
  {
    if (OnPlaces != null)
    {
      PlacesReplyMessage replyMessage = (PlacesReplyMessage)message;
      List<PlacesSearchData> places = new ArrayList<PlacesSearchData>();

      for (int i = 0; i < replyMessage.QueryDataBlocks.length; i++)
      {
        PlacesSearchData place = new PlacesSearchData();
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.sim.message.LindenMessages.PlacesReplyMessage

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.