Skip to content

Instantly share code, notes, and snippets.

@pelensky
Created August 11, 2017 09:45
Embed
What would you like to do?
Board Object class with a getter and a setter to get JSON into Clojure
package networkplayer;
public class BoardObject {
private String boardState;
public void setBoardState(String boardState) {
this.boardState = boardState;
}
public String getBoardState() {
return boardState;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment