Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class ProductInfo {
- private String productId;
- private String productName;
- private String category;
- private double price;
- private String manufacturer;
- private int reorderLevel;
- public String getProductId() {
- return productId;
- }
- public void setProductId(String productId) {
- this.productId = productId;
- }
- public String getProductName() {
- return productName;
- }
- public void setProductName(String productName) {
- this.productName = productName;
- }
- public String getCategory() {
- return category;
- }
- public void setCategory(String category) {
- this.category = category;
- }
- public double getPrice() {
- return price;
- }
- public void setPrice(double price) {
- this.price = price;
- }
- public String getManufacturer() {
- return manufacturer;
- }
- public void setManufacturer(String manufacturer) {
- this.manufacturer = manufacturer;
- }
- public int getReorderLevel() {
- return reorderLevel;
- }
- public void setReorderLevel(int reorderLevel) {
- this.reorderLevel = reorderLevel;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment