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

Examples of org.waveprotocol.wave.client.wavepanel.block.BlockStructure.NodeType


    }

    private void expect(NodeType type, String id) {
      next();
      assertNotNull(current);
      NodeType actualType = current.getType();
      String actualId = current.getId();
      assertEquals("unexpected type", type, actualType);
      assertEquals("unexpected id", id, actualId);
    }
View Full Code Here

TOP

Related Classes of org.waveprotocol.wave.client.wavepanel.block.BlockStructure.NodeType

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.