Package com.salesforce.ide.api.metadata.types

Examples of com.salesforce.ide.api.metadata.types.LogCategoryExt


     * @param scale
     * @param comboSelection
     * @return
     */
    public static LoggingInfo getLoggingInfo(int scale, String comboSelection) {
        LogCategoryExt categoryExt = LogCategoryExt.fromExternalValue(comboSelection);
        LogCategoryLevelExt levelExt = getLogCategoryLevelFrom(categoryExt, scale);
        return new LoggingInfo(categoryExt, levelExt);
    }
View Full Code Here


     * @param project
     * @param supportedFeatureEnum
     * @return
     */
    public LoggingInfo getDefaultSelectedLoggingInfo(IProject project, SupportedFeatureEnum supportedFeatureEnum) {
        LogCategoryExt defaultSelectedCategory = LogCategoryExt.Apex_code;
        LogCategoryLevelExt level = getLogCategoryLevelExt(project, defaultSelectedCategory, supportedFeatureEnum);
        return new LoggingInfo(defaultSelectedCategory, level);
    }
View Full Code Here

TOP

Related Classes of com.salesforce.ide.api.metadata.types.LogCategoryExt

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.