Package action

Examples of action.UserAction


    }

    public void waitPlayerAction() throws IOException {
        logger.debug("waiting for user input");
        String line = getActionString();
        final UserAction action = playersActionRetriever.getUserAction(line);
        logger.debug("user input is qualified as " + action);
        executeAction(line, action, currentPlayer);
    }
View Full Code Here

TOP

Related Classes of action.UserAction

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.