Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class GridLetter {
- private int row;
- private int col;
- private String letter;
- public int getRow() {
- return row;
- }
- public void setRow(int row) {
- this.row = row;
- }
- public int getCol() {
- return col;
- }
- public void setCol(int col) {
- this.col = col;
- }
- public String getLetter() {
- return letter;
- }
- public void setLetter(String letter) {
- this.letter = letter;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment