Package org.waveprotocol.wave.client.wave

Examples of org.waveprotocol.wave.client.wave.SimpleDiffDoc


            @Override
            public LazyContentDocument create(
                WaveletId waveletId, String docId, DocInitialization content) {
              // TODO(piotrkaleta,hearnden): hook up real diff state.
              SimpleDiffDoc noDiff = SimpleDiffDoc.create(content, null);
              return LazyContentDocument.create(registries, noDiff);
            }
          };

      return WaveDocuments.create(blipDocFactory, dataDocFactory);
View Full Code Here


                  private final Registries registries = RegistriesHolder.get();

                  @Override
                  public LazyContentDocument create(
                      WaveletId waveletId, String docId, DocInitialization content) {
                    SimpleDiffDoc diff = SimpleDiffDoc.create(content, diffMap.get(docId));
                    return LazyContentDocument.create(registries, diff);
                  }
                };

            return WaveDocuments.create(blipDocFactory, dataDocFactory);
View Full Code Here

            @Override
            public LazyContentDocument create(
                WaveletId waveletId, String docId, DocInitialization content) {
              // TODO(piotrkaleta,hearnden): hook up real diff state.
              SimpleDiffDoc noDiff = SimpleDiffDoc.create(content, null);
              return LazyContentDocument.create(registries, noDiff);
            }
          };

      return WaveDocuments.create(blipDocFactory, dataDocFactory);
View Full Code Here

TOP

Related Classes of org.waveprotocol.wave.client.wave.SimpleDiffDoc

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.