Complete the Javadoc comments for the following method:    …

Complete the Javadoc comments for the following method:     1     Computes the number of hours it will take to prepare   all the orders.     2   orders The list of all orders     3   Method returns number of hours it will take to prep */ public double restaurant(String[] orders) {     double total = 0;     for (String s : orders) {          total += calculateTime(s); //calls private method     }     return total; }    1   : [1]   2   : [2]   3   : [3]