Package com.appspot.bambugame.server.data

Examples of com.appspot.bambugame.server.data.HangmanQuestionSuggestion


                if (!tSuggestionCommand.hasQuestionBeenAccepted())
                {
                    // store at datastore
                    String tSuggesterUserName = tPrivatePlurkResponse.getJSONObject("friends").getJSONObject( "" + tSuggestionCommand.getSubmitterID() ).getString( "nick_name" );
                   
                    HangmanQuestionSuggestion tSuggestion = new HangmanQuestionSuggestion(tSuggestionCommand.getValidQuestionString(),
                                                                                          tSuggestionCommand.getValidHintString(),
                                                                                          null, // extras
                                                                                          tSuggestionCommand.getSubmitterID(),
                                                                                          tSuggesterUserName,
                                                                                          tPlurkID);
View Full Code Here

TOP

Related Classes of com.appspot.bambugame.server.data.HangmanQuestionSuggestion

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.