Examples of ErrorLogManager


Examples of de.fu_berlin.inf.dpp.feedback.ErrorLogManager

        if (!autoConnect)
            return;

        StatisticManager statisticManager = sarosContext
            .getComponent(StatisticManager.class);
        ErrorLogManager errorLogManager = sarosContext
            .getComponent(ErrorLogManager.class);

        // we need at least a user name, but also the agreement to the
        // statistic and error log submission
        boolean hasUserName = this.sarosContext.getComponent(
            PreferenceUtils.class).hasUserName();
        boolean hasAgreement = statisticManager.hasStatisticAgreement()
            && errorLogManager.hasErrorLogAgreement();

        if (hasUserName && hasAgreement) {
            asyncConnect();
        }
    }
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.