Package org.waveprotocol.wave.model.operation.wave

Examples of org.waveprotocol.wave.model.operation.wave.VersionUpdateOp


  }

  private void checkVersionUpdate(WaveletOperation operation, long versionIncrement,
      HashedVersion distinctVersion) {
    assertTrue(operation instanceof VersionUpdateOp);
    VersionUpdateOp vop = (VersionUpdateOp) operation;
    assertEquals(versionIncrement, vop.getContext().getVersionIncrement());
    assertEquals(distinctVersion, vop.getContext().getHashedVersion());
  }
View Full Code Here

TOP

Related Classes of org.waveprotocol.wave.model.operation.wave.VersionUpdateOp

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.