diff --git a/Hotel Array/src/Room.java b/Hotel Array/src/Room.java index 44adc1d..fc882f9 100644 --- a/Hotel Array/src/Room.java +++ b/Hotel Array/src/Room.java @@ -1,43 +1,25 @@ -/** - * - * This class represent a Room - */ +//This class represent a Room public class Room { String CustomerN; int RoomN; - - /** - * Sets the Customer Number of this#Room to passed CustomerN - * - * @param CustomerN - */ +//Sets the Customer Number of this#Room to passed CustomerN public void setCustomer(String CustomerN) { this.CustomerN = CustomerN; } - /** - * - * @return CustomerN of String type - */ + //@return CustomerN of String type public String getCustomer() { return this.CustomerN; } - /** - * Sets the Room Number of this#Room to passed RoomN - * - * @param RoomN - */ + //Sets the Room Number of this#Room to passed RoomN public void setRoom(int RoomN) { this.RoomN = RoomN; } - /** - * - * @return RoomN of int type - */ + //@return RoomN of int type public int getRoom() { return this.RoomN;