source: src/main/java/negotiator/onetomany/Product.java@ 209

Last change on this file since 209 was 207, checked in by Tim Baarslag, 5 years ago

One to many negotiation classes

File size: 256 bytes
Line 
1package negotiator.onetomany;
2
3/**
4 * A product, such as Paracetamol, or a Red Dot
5 */
6public class Product
7{
8 String id;
9
10 public Product(String id)
11 {
12 this.id = id;
13 }
14
15 @Override
16 public String toString()
17 {
18 return id;
19 }
20}
Note: See TracBrowser for help on using the repository browser.