Untitled

Anonymous
plain_text
09/14/2022 11:45 PM
620 B
22
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...