Package fr.valhalla.mailcheck.gui.classic

Examples of fr.valhalla.mailcheck.gui.classic.CheckMessagesFrame


    private boolean running; // pour arrêter le thread depuis que stop() est deprecated, cf. documentation Java

    public Checker(Account account, Kernel kernel) {
        this.kernel = kernel;
        checkPanel = new CheckPane(this);
        checkFrame = new CheckMessagesFrame(checkPanel);
        this.account = account;
        sleep = account.getSleep();
        super.setName(account  +"-checker");
    }
View Full Code Here


    }

    public Checker(Account account, Kernel kernel, CheckPane checkPanel) {
        this.kernel = kernel;
        this.checkPanel = checkPanel;
        checkFrame = new CheckMessagesFrame(checkPanel);
        this.account = account;
        sleep = account.getSleep();
        super.setName(account  +"-checker");
    }
View Full Code Here

TOP

Related Classes of fr.valhalla.mailcheck.gui.classic.CheckMessagesFrame

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.