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

Examples of org.apache.isis.core.tck.dom.poly.StringableEntityWithOwnDerivedProperty


    }

    private void interfacesLoadedByQuery() {
        // PolyInterface query = polyIntImpA;

        final StringableEntityWithOwnDerivedProperty query = new StringableEntityWithOwnDerivedProperty();
        query.setString(IMPL_A_STRING);

        final List<Stringable> list = factory.queryPolyInterfaces(query);
        assertEquals(1, list.size());
    }
View Full Code Here


        assertEquals(1, list.size());
    }

    private void interfacesLoadedByQuerySpecial() {

        final StringableEntityWithOwnDerivedProperty query = new StringableEntityWithOwnDerivedProperty();

        final List<Stringable> list = factory.queryPolyInterfaces(query);
        assertEquals(2, list.size());
    }
View Full Code Here

TOP

Related Classes of org.apache.isis.core.tck.dom.poly.StringableEntityWithOwnDerivedProperty

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.