Examples of DebuggingInfo_element


Examples of com.sforce.soap.apex.DebuggingInfo_element

            apex.setDebuggingHeader(logInfo, LogType.None);
            return new ExecuteAnonymousResultExt(apex.executeAnonymous(code), apex.getDebuggingInfo());
        } catch (ConnectionException e) {
            ExecuteAnonymousResult er = errorExecuteAnonymousResult(connectorConfig, e);
            ExecuteAnonymousResultExt erx = new ExecuteAnonymousResultExt(er, apex.getDebuggingInfo());
            DebuggingInfo_element dbi = new DebuggingInfo_element();
            dbi.setDebugLog(e.getMessage());
            erx.setDebugInfo(dbi);
            return erx;
        } finally {
            connectorConfig.setTraceMessage(orig_traceMsg);
            connectorConfig.setPrettyPrintXml(orig_prettyPrintXml);
View Full Code Here

Examples of com.sforce.soap.metadata.DebuggingInfo_element

        this.metadataRunTestsResult = metadataRunTestsResult;
    }

    public RunTestsResultExt(IDeployResultExt results) {
        this.metadataRunTestsResult = results.getRunTestsResult();
        this.debugInfo = new DebuggingInfo_element();
        this.debugInfo.setDebugLog(results.getDebugLog());
    }
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.