| | package org.ntlab.irisclient.entities; |
---|
| | |
---|
| | import com.fasterxml.jackson.annotation.JsonProperty; |
---|
| | |
---|
| | import java.util.ArrayList; |
---|
| | import java.util.List; |
---|
| | |
---|
| |
---|
| | private int max; |
---|
| | //private List<Cell> openlist = new ArrayList<>(); |
---|
| | |
---|
| | //コンストラクタ |
---|
| | public TurnJson(){ |
---|
| | public TurnJson() { |
---|
| | } |
---|
| | |
---|
| | //--------------------------------------------------------- |
---|
| | //ゲッター |
---|
| | |
---|
| | public String getHint() {return hint;} |
---|
| | public String getHint() { |
---|
| | return hint; |
---|
| | } |
---|
| | |
---|
| | public String getTeam() {return team;} |
---|
| | public String getTeam() { |
---|
| | return team; |
---|
| | } |
---|
| | |
---|
| | public int getMax() {return max;} |
---|
| | public int getMax() { |
---|
| | return max; |
---|
| | } |
---|
| | |
---|
| | //public List<Cell> getOpenListAll() {return openlist;} //リストそのものを返す。 |
---|
| | |
---|
| | //--------------------------------------------------------- |
---|
| | //セッター |
---|
| | |
---|
| | public void setHint(String hint) {this.hint = hint;} |
---|
| | public void setHint(String hint) { |
---|
| | this.hint = hint; |
---|
| | } |
---|
| | |
---|
| | public void setTeam(String team) {this.team = team;} |
---|
| | public void setTeam(String team) { |
---|
| | this.team = team; |
---|
| | } |
---|
| | |
---|
| | public void setMax(int max) {this.max = max;} |
---|
| | public void setMax(int max) { |
---|
| | this.max = max; |
---|
| | } |
---|
| | |
---|
| | //--------------------------------------------------------- |
---|
| | //openlist操作 |
---|
| | /* |
---|
| |
---|
| | public void delieteOpenList(int num){openlist.remove(num);} |
---|
| | |
---|
| | public int sizeOpenList(){return openlist.size();} |
---|
| | */ |
---|
| | } |
---|
| | |
---|
| | |