-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#16 HanRankingServiceTest módosítása (GameState kiszedése a tesztekbő…
…l, ez által garantálva a mobilitást)
- Loading branch information
unknown
authored and
unknown
committed
Apr 22, 2015
1 parent
5528f9f
commit dd48f8a
Showing
3 changed files
with
62 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
src/main/java/org/leanpoker/player/checkCards/RankInfo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* To change this license header, choose License Headers in Project Properties. | ||
* To change this template file, choose Tools | Templates | ||
* and open the template in the editor. | ||
*/ | ||
|
||
package org.leanpoker.player.checkCards; | ||
|
||
/** | ||
* | ||
* @author poker10 | ||
*/ | ||
|
||
public class RankInfo { | ||
private String highRank1; | ||
private String highRank2; | ||
private int myCardsOfHand; | ||
|
||
public String getHighRank1() { | ||
return highRank1; | ||
} | ||
|
||
public String getHighRank2() { | ||
return highRank2; | ||
} | ||
|
||
public int getMyCardsOfHand() { | ||
return myCardsOfHand; | ||
} | ||
|
||
|
||
public RankInfo(String highRank1, String highRank2, int myCardsOfHand) { | ||
this.highRank1 = highRank1; | ||
this.highRank2 = highRank2; | ||
this.myCardsOfHand = myCardsOfHand; | ||
} | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters