dsantistevan

Results 4 issues of dsantistevan

In the following code there's a violation to the Single Responde Principle of SOLID design. ``` public class Singleroom implements Serializable{ String name; String contact; String gender; ArrayList food =new...

#3 The class Guest that has the variables held before by a room has been added to the project, also some changes were made to the Project.java class in order...

After solving #3 and applying #4 there was a violation to the Open Closed Principle of SOLID design, because the rooms store a set amount of guests, this is not...

The Food class wouldn't be able to handle a different item that the ones listed there, and if an indefinite amount of items were added this code wouldn't be able...