Package org.waveprotocol.wave.model.document

Examples of org.waveprotocol.wave.model.document.WaveContext


    if (proxy == null) {
      proxy = new DigestProxy(result);
      digests.put(id, proxy);

      // Switch to a live digest if the wave is open.
      WaveContext wave = waveStore.getOpenWaves().get(waveId);
      if (wave != null) {
        proxy.activate(wave);
      }
    }
View Full Code Here


    if (isNewWave) {
      initNewWave(x);
    } else {
      handleExistingWave(x);
    }
    wave = new WaveContext(
        two.getWave(), two.getConversations(), two.getSupplement(), two.getReadMonitor());
    waveStore.add(wave);
    install();
    whenReady.use(x);
  }
View Full Code Here

TOP

Related Classes of org.waveprotocol.wave.model.document.WaveContext

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.