Package org.jacorb.test

Examples of org.jacorb.test.any_sequenceHolder


        Any a2 = setup.getClientOrb().create_any();
        a2.insert_long(2);
        Any a3 = setup.getClientOrb().create_any();
        a3.insert_long(3);
        Any[] a = new Any[] { a1, a2, a3 };
        any_sequenceHolder b = new any_sequenceHolder();
        server.bounce_any_sequence(a, b);
        assertEquals (3, b.value.length);
        for (int i=0; i<a.length; i++)
        {
            assertTrue (a[i].equal(b.value[i]));
View Full Code Here

TOP

Related Classes of org.jacorb.test.any_sequenceHolder

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.