コード例 #1
0
ファイル: CoreAssert.java プロジェクト: veithen/ddom
 public static void assertSiblings(CoreChildNode node1, CoreChildNode node2)
     throws DeferredBuildingException {
   Assert.assertSame(node2, node1.coreGetNextSibling());
   Assert.assertSame(node1, node2.coreGetPreviousSibling());
 }
コード例 #2
0
ファイル: CoreAssert.java プロジェクト: veithen/ddom
 public static void assertOrphan(CoreChildNode node) throws DeferredBuildingException {
   Assert.assertNull(node.coreGetParent());
   Assert.assertNull(node.coreGetPreviousSibling());
   Assert.assertNull(node.coreGetNextSibling());
 }