Package com.salesforce.ide.ui.views

Examples of com.salesforce.ide.ui.views.LoggingComposite


        gridLayout.numColumns = 4;
        rightHandComposite = new Composite(sashForm, SWT.NONE);
        rightHandComposite.setLayout(gridLayout);

        loggingComposite =
                new LoggingComposite(rightHandComposite, runView.getLoggingService(), SWT.NONE, false,
                        LoggingInfo.SupportedFeatureEnum.RunTest);

        GridData gridData2 = new GridData();
        gridData2.grabExcessHorizontalSpace = true;
        gridData2.horizontalAlignment = GridData.FILL;
View Full Code Here


    private void createLoggingComposite() {
        Composite composite = new Composite(this, SWT.NONE);
        composite.setLayout(new GridLayout(3, false));
        createProjectComposite(composite);
        loggingComposite =
                new LoggingComposite(composite,
                        ContainerDelegate.getInstance().getServiceLocator().getLoggingService(), SWT.NONE, false,
                        LoggingInfo.SupportedFeatureEnum.ExecuteAnonymous);
    }
View Full Code Here

        propertyComposite.setLayout(gridLayout1);

        // run test logging setting: new logging framework
        cachedRunTestLoggingSetting =
                getLoggingService().getAllLoggingInfo(getProject(), LoggingInfo.SupportedFeatureEnum.RunTest);
        LoggingComposite runTestLoggingComposite =
                new LoggingComposite(propertyComposite, getLoggingService(), SWT.NONE, true,
                        LoggingInfo.SupportedFeatureEnum.RunTest);
        runTestLoggingComposite.enable(getProject());

        // execute anonymous logging setting: new logging framework
        cachedExeAnonymousLoggingSetting =
                getLoggingService().getAllLoggingInfo(getProject(), LoggingInfo.SupportedFeatureEnum.ExecuteAnonymous);
        LoggingComposite loggingComposite =
                new LoggingComposite(propertyComposite, getLoggingService(), SWT.NONE, true,
                        LoggingInfo.SupportedFeatureEnum.ExecuteAnonymous);
        loggingComposite.enable(getProject());

        UIUtils.setHelpContext(propertyComposite, this.getClass().getSimpleName());

        return propertyComposite;
    }
View Full Code Here

TOP

Related Classes of com.salesforce.ide.ui.views.LoggingComposite

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.