start of new file
[IRC.git] / Robust / src / Benchmarks / WebServerJ / ItemInfo.java
1 class ItemInfo {
2         int quantity;
3         int price;
4         ItemInfo(int x, int y) { 
5                 quantity = x;
6                 price = y;
7         }
8 }