DC1FTS: Foundations of Technology Solutions, Core Tasks 1: OrderBot 1 Note In the following, method names are always followed by (). This serves as a way to distinguish method names from parameters/ class names and it does not mean that the method has no parameters. 2 Write a Method Set up an OrderBot class in BlueJ, with no fields and an empty constructor (no input parameters, nothing in the constructor body). Write a printOrder() method that takes a customer’s order in a restaurant and passes it on to the kitchen staff. The method should take four parameters: • the order (assume the customer can only order one thing at a time) – model this as a String that holds the name of the dish • the table number – this is an int • the time when the order was placed – two parameters
DC1FTS: Foundations of Technology Solutions, Core Tasks 1: OrderBot 1 Note In the following, method names are always followed by (). This serves as…