Package org.waveprotocol.wave.diff.impl

Examples of org.waveprotocol.wave.diff.impl.DocumentDiffSnapshotImpl


    for (String field : message.getRemovedParticipant()) {
      addRemovedParticipant(field);
    }
    clearDocument();
    for (DocumentDiffSnapshot field : message.getDocument()) {
      addDocument(new DocumentDiffSnapshotImpl(field));
    }
    setVersion(message.getVersion());
    setLastModifiedTime(message.getLastModifiedTime());
    setCreator(message.getCreator());
    setCreationTime(message.getCreationTime());
View Full Code Here


    }
  }

  @Override
  public DocumentDiffSnapshotImpl getDocument(int n) {
    return new DocumentDiffSnapshotImpl(document.get(n));
  }
View Full Code Here

    return new DocumentDiffSnapshotImpl(document.get(n));
  }

  @Override
  public void setDocument(int n, DocumentDiffSnapshot message) {
    this.document.set(n, new DocumentDiffSnapshotImpl(message));
  }
View Full Code Here

    return document.size();
  }

  @Override
  public void addDocument(DocumentDiffSnapshot message) {
    this.document.add(new DocumentDiffSnapshotImpl(message));
  }
View Full Code Here

TOP

Related Classes of org.waveprotocol.wave.diff.impl.DocumentDiffSnapshotImpl

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.