Package org.apache.isis.core.tck.dom.refs

Examples of org.apache.isis.core.tck.dom.refs.UnidirFkChildEntity


        iswf.beginTran();
        parent1 = repo.list().get(0);
        parent2 = repo.list().get(0);
        Set<UnidirFkChildEntity> children = parent1.getChildren();
        assertThat(children.size(), is(3));
        UnidirFkChildEntity child1 = parent1.getChildren().iterator().next();
        parent1.removeChild(child1);
        parent2.addChild(child1);
        iswf.commitTran();

        iswf.bounceSystem();
View Full Code Here

TOP

Related Classes of org.apache.isis.core.tck.dom.refs.UnidirFkChildEntity

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.