Package com.jcloisterzone.ui.panel

Examples of com.jcloisterzone.ui.panel.ConnectGamePanel.onWebsocketError()


    @Override
    public void onWebsocketError(Exception ex) {
        ConnectGamePanel cgp = client.getConnectGamePanel();
        if (cgp != null) {
            cgp.onWebsocketError(ex);
            return;
        }
        GamePanel gp = client.getGamePanel();
        if (gp != null) {
            gp.onWebsocketError(ex);
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.