(String id, Double price, String description, double weight, Size size)
| 79 | Size size; |
| 80 | |
| 81 | public Product(String id, Double price, String description, double weight, Size size) { |
| 82 | this.id = id; |
| 83 | this.price = price; |
| 84 | this.description = description; |
| 85 | this.weight = weight; |
| 86 | this.size = size; |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | enum Size { |
nothing calls this directly
no outgoing calls
no test coverage detected