Package de.fu_berlin.inf.dpp.feedback

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


            PreferenceConstants.AUTO_CONNECT);

        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

Related Classes of de.fu_berlin.inf.dpp.feedback.StatisticManager

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.