Package ariba.ui.aribaweb.test

Examples of ariba.ui.aribaweb.test.TestContext


public class TestComponentPage extends AWComponent
{
    void createBusinessObject ()
    {
        TestContext tc = TestContext.getTestContext(requestContext());
        tc.put(new String("MyBusinessObject"));
        tc.put(new Integer(20));
        tc.put(this);

        Set keys = tc.keys();
        for (Object key : keys) {
            boolean has = TestLinkManager.instance().hasObjectInspectors(key);
            if (has) {
                List<TestInspectorLink> inspectors =
                        TestLinkManager.instance().getObjectInspectors(key);
View Full Code Here


        return null;
    }

    AWComponent showNewBusinessObjectWindow ()
    {
        TestContext tc = TestContext.getTestContext(requestContext());
        tc.put(new String("MyBusinessObject"));
        return null;
    }
View Full Code Here

TOP

Related Classes of ariba.ui.aribaweb.test.TestContext

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.