AmidamaruZXC

Untitled

May 19th, 2020
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.49 KB | None | 0 0
  1. public class GridLetter {
  2.     private int row;
  3.     private int col;
  4.     private String letter;
  5.  
  6.     public int getRow() {
  7.         return row;
  8.     }
  9.  
  10.     public void setRow(int row) {
  11.         this.row = row;
  12.     }
  13.  
  14.     public int getCol() {
  15.         return col;
  16.     }
  17.  
  18.     public void setCol(int col) {
  19.         this.col = col;
  20.     }
  21.  
  22.     public String getLetter() {
  23.         return letter;
  24.     }
  25.  
  26.     public void setLetter(String letter) {
  27.         this.letter = letter;
  28.     }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment