Skip to content
Snippets Groups Projects

boschen

Merged Boshan Chen requested to merge boschen_staff_page into main
1 file
+ 39
0
Compare changes
  • Side-by-side
  • Inline
Product.java 0 → 100644
+ 39
0
public class Product {
public String name;
public String description;
public String picture;
public String altText;
public double price;
public Product(String name, String description, String picture, String altText, double price) {
this.name = name;
this.description = description;
this.picture = picture;
this.altText = altText;
this.price = price;
}
public String getName() {
return this.name;
}
public String getAltText() {
return this.altText;
}
public String getDescription() {
return this.description;
}
public String getPicture() {
return this.picture;
}
public double getPrice() {
return this.price;
}
public String toString() {
return "Product";
}
}
Loading