Examples of VersionUpdateOp


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
Copyright © 2018 www.massapi.com. 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.