Package com.jcloisterzone.wsio.message

Examples of com.jcloisterzone.wsio.message.UndoMessage


        undo = new JMenuItem(_("Undo"));
        undo.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_Z, Toolkit.getDefaultToolkit().getMenuShortcutKeyMask()));
        undo.setEnabled(false);
        undo.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                client.getConnection().send(new UndoMessage(client.getGame().getGameId()));
            }
        });
        menu.add(undo);

        menu.addSeparator();
View Full Code Here

TOP

Related Classes of com.jcloisterzone.wsio.message.UndoMessage

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.