Package org.waveprotocol.wave.client.wavepanel.block

Examples of org.waveprotocol.wave.client.wavepanel.block.BlockStructureTestBase$NodeChecker


    return XmlStructure.create(XmlRenderer.ROOT_ID);
  }

/** @return a block test on a block tree that is attached to the page. */
  private BlockStructureTestBase getAttachedTest() {
    BlockStructureTestBase x = new BlockStructureTestBase() {
      @Override
      protected XmlStructure create(ConversationView model) {
        return createXml(model);
      }
    };
    x.setUp();
    return x;
  }
View Full Code Here


    return x;
  }

  /** @return a block test on a block tree that is detached from the page. */
  private BlockStructureTestBase getTest() {
    BlockStructureTestBase x = new BlockStructureTestBase() {
      @Override
      protected XmlStructure create(ConversationView model) {
        XmlStructure x = createXml(model);
        x.detach();
        return x;
      }
    };
    x.setUp();
    return x;
  }
View Full Code Here

TOP

Related Classes of org.waveprotocol.wave.client.wavepanel.block.BlockStructureTestBase$NodeChecker

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.