Package gui.testSetup.components

Examples of gui.testSetup.components.PageDescriptionViewer


        //Set Start Page
        currPage = TestConfSetting.CODE_LOCATION;

        //Create dynamically changing objects
        pageDescriptionViewer = new PageDescriptionViewer(currPage.getDescription());
        pageInputEditor = new PageInputEditor(currPage);

        //Configure JFrame Properties
        this.setupFrame();
View Full Code Here


    public SetupEditor(Controller control, TestConfSetting enumPageType)
    {
        this.control = control;
        this.currPage = enumPageType;

        pageDescriptionViewer = new PageDescriptionViewer(currPage.getDescription());
        pageInputEditor = new PageInputEditor(currPage);
        pageInputEditor.setValue(this.control.getSetupInfo(currPage));

        //Setup frame
        this.setupFrame();
View Full Code Here

TOP

Related Classes of gui.testSetup.components.PageDescriptionViewer

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.