Package bndtools.editor.contents

Examples of bndtools.editor.contents.TestSuitesPart


        toolkit.adapt(sashForm, false, false);

        Composite leftPanel = toolkit.createComposite(sashForm);
        Composite rightPanel = toolkit.createComposite(sashForm);

        TestSuitesPart suitesPart = new TestSuitesPart(leftPanel, toolkit, Section.TITLE_BAR | Section.EXPANDED);
        managedForm.addPart(suitesPart);

        SaneDetailsPart detailsPart = new SaneDetailsPart();
        managedForm.addPart(detailsPart);
        // TODO: add details pages here
        detailsPart.createContents(toolkit, rightPanel);

        sashForm.hookResizeListener();

        // LAYOUT
        body.setLayout(new FillLayout());

        GridLayout layout;
        GridData gd;

        layout = new GridLayout();
        leftPanel.setLayout(layout);

        gd = new GridData(SWT.FILL, SWT.FILL, true, true);
        suitesPart.getSection().setLayoutData(gd);

        layout = new GridLayout();
        rightPanel.setLayout(layout);
    }
View Full Code Here

TOP

Related Classes of bndtools.editor.contents.TestSuitesPart

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.