diff --git a/Products.java b/Products.java index f7449dc88bc5d7145412f02ddb14a7080f8adaab..7b4e6310e5d0865a7407a84867e90c78a6ef08d1 100644 --- a/Products.java +++ b/Products.java @@ -59,4 +59,14 @@ public class Products { /* a good class, but not as good as cse391 */ 10000 ); } + + public Product isaacsProduct() { + return new Product( + "Bucolic Green Hills", + "Take a deep breath and relax", + "windows_xp_bliss.jpeg", + "rolling grass fields, blue skies, white clouds", + 100000 + ); + } } diff --git a/Staff.java b/Staff.java index c2ebdf52f75f4116d33090b8f67e706a3575259e..60cb3747fafbf9c96540a8ed1907f745caaa8b75 100644 --- a/Staff.java +++ b/Staff.java @@ -69,4 +69,14 @@ public class Staff { "panda icon" ); } + + public Employee isaacwu() { + return new Employee( + "Isaac", + "Programmer", + "Can I go to sleep now?", + "icon.jpeg", + "angrily studying" + ); + } } diff --git a/images/products/windows_xp_bliss.jpeg b/images/products/windows_xp_bliss.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..c37a8469d162a3b0bf2ee9818ae122faf93184bb Binary files /dev/null and b/images/products/windows_xp_bliss.jpeg differ diff --git a/images/staff/icon.jpeg b/images/staff/icon.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..9b50ea9ddd8fead4263c59528af2bd2fd0631c40 Binary files /dev/null and b/images/staff/icon.jpeg differ