Package org.jacorb.orb

Examples of org.jacorb.orb.ProfileSelector



    private ProfileSelector createMockProfileSelector( Profile profile )
    {
        MockControl selectorControl = MockControl.createControl( ProfileSelector.class );
        ProfileSelector selector = (ProfileSelector) selectorControl.getMock();
        selector.selectProfile( new ArrayList(), ((ORB) orb).getClientConnectionManager() );
        selectorControl.setReturnValue( profile );
        selectorControl.replay();
        return selector;
    }
View Full Code Here



    private ProfileSelector createMockProfileSelector( Profile profile )
    {
        MockControl selectorControl = MockControl.createControl( ProfileSelector.class );
        ProfileSelector selector = (ProfileSelector) selectorControl.getMock();
        selector.selectProfile( new ArrayList<Profile>(), ((ORB) orb).getClientConnectionManager() );
        selectorControl.setReturnValue( profile );
        selectorControl.replay();
        return selector;
    }
View Full Code Here

TOP

Related Classes of org.jacorb.orb.ProfileSelector

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.