Package org.waveprotocol.wave.model.document.MutableDocument

Examples of org.waveprotocol.wave.model.document.MutableDocument.Action


    return doc.getNextSibling(line);
  }

  public static void properAppendLine(final MutableDocument<?, ?, ?> doc,
      final XmlStringBuilder content) {
    doc.with(new Action() {
      @Override
      public <N, E extends N, T extends N> void exec(MutableDocument<N, E, T> doc) {
        appendLine(doc, content);
      }
    });
View Full Code Here

TOP

Related Classes of org.waveprotocol.wave.model.document.MutableDocument.Action

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.