Package action.reader

Examples of action.reader.SetterDataReader


    private static UserActionProvider createActionProvider() {
        logger.debug("configuring user action provider");
        UserActionProvider actionProvider = new UserActionProvider();
        actionProvider.addDataReader(new StringDataReader(UserCommand.QUIT_COMMAND), UserAction.QUIT);
        actionProvider.addDataReader(new MoveDataReader(), UserAction.GAME_MOVE);
        actionProvider.addDataReader(new SetterDataReader(UserCommand.HISTORY_COMMAND), UserAction.SET_HISTORY);
        return actionProvider;
    }
View Full Code Here

TOP

Related Classes of action.reader.SetterDataReader

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.