Package org.waveprotocol.wave.federation.proto.ProtocolWaveletOperationProtoImpl

Examples of org.waveprotocol.wave.federation.proto.ProtocolWaveletOperationProtoImpl.MutateDocumentProtoImpl.copyFrom()


  private MutateDocumentProtoImpl getOrCreateMutateDocumentProtoImpl(MutateDocument message) {
    if (message instanceof MutateDocumentProtoImpl) {
      return (MutateDocumentProtoImpl) message;
    } else {
      MutateDocumentProtoImpl messageImpl = new MutateDocumentProtoImpl();
      messageImpl.copyFrom(message);
      return messageImpl;
    }
  }

  /** Get or create a ProtocolDocumentOperationProtoImpl from a ProtocolDocumentOperation. */
 
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.