Package client.model.event

Examples of client.model.event.InitMenuToPlayEvent


    public void fireInitMenuToPlay(boolean anonymous, String email, int score) {
        MenuListener[] listeners = (MenuListener[]) menuListeners.getListeners(MenuListener.class);

        for (MenuListener l : listeners) {
            l.initMenuToPlay(new InitMenuToPlayEvent(this, anonymous, email, score));
        }
    }
View Full Code Here

TOP

Related Classes of client.model.event.InitMenuToPlayEvent

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.