Package org.waveprotocol.wave.federation.ProtocolDocumentOperation

Examples of org.waveprotocol.wave.federation.ProtocolDocumentOperation.Component


      return this;
    }

    /** Builds a {@link Component} using this builder and a factory. */
    public Component build(Factory factory) {
      Component message = factory.create();
      message.setAnnotationBoundary(annotationBoundary);
      message.setCharacters(characters);
      message.setElementStart(elementStart);
      message.setElementEnd(elementEnd);
      message.setRetainItemCount(retainItemCount);
      message.setDeleteCharacters(deleteCharacters);
      message.setDeleteElementStart(deleteElementStart);
      message.setDeleteElementEnd(deleteElementEnd);
      message.setReplaceAttributes(replaceAttributes);
      message.setUpdateAttributes(updateAttributes);
      return message;
    }
View Full Code Here

TOP

Related Classes of org.waveprotocol.wave.federation.ProtocolDocumentOperation.Component

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.