1 4 package demo.inventory; 5 6 public class Department 7 { 8 private final String code; 9 private final String name; 10 private final Product[] products; 11 12 public Department(String c, String n, Product[] p) 13 { 14 code = c; 15 name = n; 16 products = p; 17 } 18 19 public String getName() 20 { 21 return name; 22 } 23 24 public Product[] getProducts() 25 { 26 return products; 27 } 28 } 29 | Popular Tags |