Examples of konecTahu()


Examples of cz.beranek.model.Hra.konecTahu()

   */
  @RequestMapping(value="/konecTahu.do")
  public String konecTahu(Model model,@ModelAttribute("hraId") String hraId,@ModelAttribute("userId") String hracId){
    //System.out.println(hraId + " konec tahu.");
    Hra h = SpravceHer.getInstance().getHra(hraId);
    if(h.konecTahu(h.getHrac(hracId))){
      //ma pravo prehodit tah
      model.addAttribute("JSON", "{\"prepnuto\":true}");
    }else{
      //nema pravo prehodit tah
      model.addAttribute("JSON", "{\"pripraven\":false}");
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.