-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProduct.java
More file actions
40 lines (32 loc) · 840 Bytes
/
Product.java
File metadata and controls
40 lines (32 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Decompiled by DJ v3.10.10.93 Copyright 2007 Atanas Neshkov Date: 3/17/2023 10:53:51 AM
// Home Page: http://members.fortunecity.com/neshkov/dj.html http://www.neshkov.com/dj.html - Check often for new version!
// Decompiler options: packimports(3)
// Source File Name: Product.java
import java.util.Vector;
public class Product
{
public Product()
{
}
public String getName()
{
return null;
}
public String getQuality()
{
return null;
}
public Integer getQuantity()
{
return null;
}
public void modifyQuantity(Integer integer)
{
}
public String name;
public String quality;
public Integer quantity;
public Integer idProduct;
public Vector myShop;
public Vector myShoppingList;
}