Untitled
unknown
plain_text
3 years ago
465 B
14
Indexable
package cinema;
public class Seat {
private int row;
private int column;
public int getRow() {
return row;
}
public void setRow(int row) {
this.row = row;
}
public int getColumn() {
return column;
}
public void setColumn(int column) {
this.column = column;
}
public Seat(int row, int column) {
this.row = row;
this.column = column;
}
}
Editor is loading...