Package com.google.wave.api.event

Examples of com.google.wave.api.event.WaveletSelfAddedEvent


      // This deviates from Google Wave production which always sends this
      // event, even if it wasn't present in your capabilities.
      if (capabilities.containsKey(EventType.WAVELET_SELF_ADDED) && participant.equals(robotId)) {
        // The robot has been added
        String rootBlipId = ConversationUtil.getRootBlipId(conversation);
        WaveletSelfAddedEvent event = new WaveletSelfAddedEvent(
            null, null, deltaAuthor.getAddress(), deltaTimestamp, rootBlipId);
        addEvent(event, capabilities, rootBlipId, messages);
      }
    }
View Full Code Here


      // This deviates from Google Wave production which always sends this
      // event, even if it wasn't present in your capabilities.
      if (capabilities.containsKey(EventType.WAVELET_SELF_ADDED) && participant.equals(robotId)) {
        // The robot has been added
        String rootBlipId = ConversationUtil.getRootBlipId(conversation);
        WaveletSelfAddedEvent event = new WaveletSelfAddedEvent(
            null, null, deltaAuthor.getAddress(), deltaTimestamp, rootBlipId);
        addEvent(event, capabilities, rootBlipId, messages);
      }
    }
View Full Code Here

TOP

Related Classes of com.google.wave.api.event.WaveletSelfAddedEvent

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.