Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * konstruktor
- */
- public MyProduct(String productName, double prize, String pictureName, Category category ) {
- super();
- this.productName = productName;
- this.prize = BigDecimal.valueOf(prize);
- this.category = category;
- // ... atd
- }
- /**
- *vyctovy typ
- */
- enum MyCategory implements Category {
- ovocie, zelenina, pecivo, maso, alkohol
- }
Advertisement
Add Comment
Please, Sign In to add comment