Examples of DeployResultsViewAssembler


Examples of com.salesforce.ide.ui.internal.utils.DeployResultsViewAssembler

    public void processRunTestResults(IDeployResultExt deployResult, IResource resource) {
        // set this static variable for re-run
        this.resource = resource;

        //populate result view tree
        DeployResultsViewAssembler assembler =
                new DeployResultsViewAssembler(deployResult, runTestComposite.getTree(), resource.getProject(),
                        serviceLocator.getProjectService());
        assembler.assembleRunTestsResultsTree();

        // set debug logs
        IRunTestsResultExt runTestResults = new RunTestsResultExt(deployResult);
        if (runTestResults.getDebugInfo() != null && Utils.isNotEmpty(runTestResults.getDebugInfo().getDebugLog())) {
            runTestComposite.getTextArea().setText(DEBUG_LOG + ":\n\n" + runTestResults.getDebugInfo().getDebugLog());
View Full Code Here

Examples of com.salesforce.ide.ui.internal.utils.DeployResultsViewAssembler

        } else {
            resultsComposite.setLblReason(DeploymentMessages.getString("DeploymentWizard.Results.Success.message"));
        }

        // create results tree
        DeployResultsViewAssembler assembler =
                new DeployResultsViewAssembler(result == null ? new EmptyDeployResultExt() : result, resultsComposite
                        .getTreeResults(), deploymentWizardController.getProject(), ContainerDelegate.getInstance().getServiceLocator().getProjectService());
        assembler.assembleDeployResultsTree();

        LogViewShell logView =
                new LogViewShell(getShell(), deploymentResult.getDeployLog(), deploymentResult.getRemoteDeployLog(),
                        deploymentWizardController.getDeploymentWizardModel().getProjectName());
        resultsComposite.setLogShellView(logView);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.