Package de.fu_berlin.inf.dpp.util.VersionManager

Examples of de.fu_berlin.inf.dpp.util.VersionManager.VersionInfo


    protected void checkVersion(SubMonitor subMonitor)
        throws SarosCancellationException {

        log.debug("Inv" + Utils.prefix(peer) + ": Checking peer's version...");
        subMonitor.setTaskName("Checking version...");
        VersionInfo versionInfo = versionManager.determineCompatibility(peer);

        checkCancellation(CancelOption.DO_NOT_NOTIFY_PEER);

        Compatibility comp = null;
View Full Code Here


        /*
         * TODO: this method should get a complete VersionInfo object from the
         * checkVersion() method.
         */
        VersionInfo hostVersionInfo = versionInfo;
        if (hostVersionInfo == null) {
            hostVersionInfo = new VersionInfo();
            hostVersionInfo.compatibility = null;
        }

        hostVersionInfo.version = versionManager.getVersion();

View Full Code Here

TOP

Related Classes of de.fu_berlin.inf.dpp.util.VersionManager.VersionInfo

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.