/** * Finds the room attributes with name that contains the given argument * * @generated NOT */ public EList<RoomAttribute> findRoomAttribute(String name) { return roomAttributeHandling.findRoomAttribute(name); }
/** * Retrieves all room attributes of the current hotel * * @generated NOT */ public EList<RoomAttribute> getAllRoomAttributes() { return roomAttributeHandling.getAllRoomAttributes(); }
/** * Updates the given room attribute with the new parameters. * * @generated NOT */ public boolean editRoomAttribute( RoomAttribute roomAttribute, String newName, String newDescription) { return roomAttributeHandling.editRoomAttribute(roomAttribute, newName, newDescription); }
/** * Attempts to remove the given room attribute from the list of available room attributes of the * current hotel. * * @generated NOT */ public boolean removeRoomAttribute(RoomAttribute roomAttribute) { return roomAttributeHandling.removeRoomAttribute(roomAttribute); }
/** * Adds a room attribute with the given properties to the list of available room attributes at the * current hotel. * * @generated NOT */ public RoomAttribute addRoomAttribute(String name, String description) { return roomAttributeHandling.addRoomAttribute(name, description); }