Package org.waveprotocol.box.search.SearchResponse

Examples of org.waveprotocol.box.search.SearchResponse.Digest


      return this;
    }

    /** Builds a {@link Digest} using this builder and a factory. */
    public Digest build(Factory factory) {
      Digest message = factory.create();
      message.setTitle(title);
      message.setSnippet(snippet);
      message.setWaveId(waveId);
      message.setLastModified(lastModified);
      message.setUnreadCount(unreadCount);
      message.setBlipCount(blipCount);
      message.clearParticipants();
      message.addAllParticipants(participants);
      message.setAuthor(author);
      return message;
    }
View Full Code Here

TOP

Related Classes of org.waveprotocol.box.search.SearchResponse.Digest

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.