TurnJsonの作成
1 parent 5cf467d commit f12c4e1a65864ee753207bc8bcfee4e098173117
d-matsuura authored on 6 Oct 2022
Showing 1 changed file
View
41
app/src/main/java/org/ntlab/irisclient/entities/TurnJson.java
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();}
*/
}