From 92dad7da65e28f48a994aed30cd532d147a1e465 Mon Sep 17 00:00:00 2001 From: SasiEdirisinghe <33214492+SasiEdirisinghe@users.noreply.github.com> Date: Mon, 30 Oct 2017 06:37:47 +0000 Subject: [PATCH] Update Room.java --- Hotel Array/src/Room.java | 28 +++++----------------------- 1 file changed, 5 insertions(+), 23 deletions(-) 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;