diff --git a/Products.java b/Products.java index 9d5e51389bc8895042946e564396feda0f7bb47a..4e03298f7ed63b982ade9623ffa66bde5186a065 100644 --- a/Products.java +++ b/Products.java @@ -1,5 +1,33 @@ /* check out these products! */ public class Products { /* a good class, but not as good as cse391 */ + + public Product yverma23sProduct() { + return new Product( + "Lebron 2's", + "Nike basketball shoes", + "Lebron2.png", + "Image of black and white nikes", + 105.97 + ); + } + public Product joshjyinProduct() { + return new Product( + "Dub Hub", + "Craigslist for UW students", + "dubhub.jpg", + "Image of the best college campus", + 99999999999.99 + ); + } + public Product kevluoyrsProduct() { + return new Product( + "Blindr", + "ML AI Blockchain Crypto eco Window Blinds", + "blindr.jpg", + "Snazzy blindr portrait", + 99999999999.99 + ); + } public Product evanlousProduct() { return new Product( "Dorito Piece", @@ -9,6 +37,15 @@ public class Products { /* a good class, but not as good as cse391 */ 99999.99 ); } + public Product ahmincsProduct() { + return new Product( + "moorb", + "broom but better because broom", + "broom.PNG", + "image of legendary broom that might also be my profile", + 0.92 + ); + } public Product rairai77sProudct() { return new Product( "Cheeto Dust", @@ -419,7 +456,45 @@ public class Products { /* a good class, but not as good as cse391 */ "greatest water fountain of all time", "waterfountain.png", "Water fountain w/ water bottle filler", - 1312.99 + 1312.99 + ) + } + public Product cvanleerProduct() { + return new Product( + "Milky Way", + "Contains chocolate, caramel, nougat and you", + "galaxy.jpg", + "A yellowish galaxy in space", + 27000.00 + ); + } + + public Product kevyin30Product() { + return new Product( + "iPhone 30 Pro Max", + "another new phone with nothing new", + "iphone15promax.jpg", + "iPhone 15 Pro Max", + 1999 + ); + } + + public Product nvhoangProduct() { + return new Product( + "Logitech G PRO X SUPERLIGHT 2", + "Logitech wireless gaming mouse in magenta", + "superlight.jpg", + "Side view of the logitech gaming mouse", + 159.99 + ); + } + public Product drose4Product() { + return new Product( + "Trader Joes Chicken Fried Rice", + "The best frozen fried rice on earth", + "friedrice.jpg", + "Image of trader joes chicken fried rice package", + 3.99 ); } } diff --git a/Staff.java b/Staff.java index b1f64922640ad72d27489cf2100da162080fdecd..39ac73d7f088d0eac9f62fd079d36b5d3073b21b 100644 --- a/Staff.java +++ b/Staff.java @@ -1,4 +1,31 @@ public class Staff { + public Employee yverma23() { + return new Employee( + "Yash Verma", + "Baller", + "Sleep deprived", + "LebronJamesMeme.jpg", + "Lebron Meme" + ); + } + public Employee joshjyin() { + return new Employee( + "Joshua Yin", + "Student", + "sleep deprived", + "this_is_fine.png", + "A typical day in my life" + ); + } + public Employee kevluoyr() { + return new Employee( + "Kevin Luo", + "Supreme Leader", + "hyped", + "energy.jpg", + "me" + ); + } public Employee evanlou() { return new Employee( @@ -18,6 +45,15 @@ public class Staff { "A snorlax sitting" ); } + public Employee ahminc() { + return new Employee( + "Ahmin Chang", + "Professional Broom Inspector", + "roasting", + "broom.PNG", + "a beautiful broom in all it's glory" + ); + } public Employee lwang42() { return new Employee( "Lawrence Wang", @@ -453,4 +489,43 @@ public class Staff { "stick man" ); } + + public Employee cvanleer() { + return new Employee( + "Cole", + "Security Officer", + "Likes to eat everything", + "kirby_sword.png", + "Kirby with a sword" + ); + } + + public Employee kevyin30() { + return new Employee( + "Kevin", + "Student", + "I am a person", + "kevyin30.jpg", + "neutral emoji" + ); + } + + public Employee nvhoang() { + return new Employee( + "Noah", + "Student", + "Twice Enjoyer", + "lebron_james.jpeg", + "international student lebron james from tiktok" + ); + } + public Employee drose4() { + return new Employee( + "Dylan", + "Student", + "Semi pro Uno player", + "dog.jpg", + "Picture of a dog" + ); + } } diff --git a/images/products/Lebron2.png b/images/products/Lebron2.png new file mode 100644 index 0000000000000000000000000000000000000000..d627c4870e9567308e9a050a2f1d84437e7d240a Binary files /dev/null and b/images/products/Lebron2.png differ diff --git a/images/products/blindr.jpg b/images/products/blindr.jpg new file mode 100644 index 0000000000000000000000000000000000000000..08a5d35206ad846b8cafa45cc8a41c7f80a2a890 Binary files /dev/null and b/images/products/blindr.jpg differ diff --git a/images/products/broom.PNG b/images/products/broom.PNG new file mode 100644 index 0000000000000000000000000000000000000000..7c2db8e5447069592ee37ebd56c789a9eda29668 Binary files /dev/null and b/images/products/broom.PNG differ diff --git a/images/products/dubhub.jpg b/images/products/dubhub.jpg new file mode 100644 index 0000000000000000000000000000000000000000..320642efc2de6d4aeac198a0c3d55d433970c7b3 Binary files /dev/null and b/images/products/dubhub.jpg differ diff --git a/images/products/friedrice.jpg b/images/products/friedrice.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7217c1bb58ad1e76580047e10bcf5c0aad1b972 Binary files /dev/null and b/images/products/friedrice.jpg differ diff --git a/images/products/galaxy.jpg b/images/products/galaxy.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6cde4ae417015ba639e0e7a9176333d64aed4f7c Binary files /dev/null and b/images/products/galaxy.jpg differ diff --git a/images/products/iphone15promax.jpg b/images/products/iphone15promax.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea96d4ce8820ea75338b4ffc3b0b1813012255c6 Binary files /dev/null and b/images/products/iphone15promax.jpg differ diff --git a/images/products/superlight.jpg b/images/products/superlight.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17f8c0a7d054f2ada6ef01b75a1a8c55902429e7 Binary files /dev/null and b/images/products/superlight.jpg differ diff --git a/images/staff/LebronJamesMeme.jpg b/images/staff/LebronJamesMeme.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a2b274cebeb3d41a5130337d578ac1e27247e031 Binary files /dev/null and b/images/staff/LebronJamesMeme.jpg differ diff --git a/images/staff/broom.PNG b/images/staff/broom.PNG new file mode 100644 index 0000000000000000000000000000000000000000..7c2db8e5447069592ee37ebd56c789a9eda29668 Binary files /dev/null and b/images/staff/broom.PNG differ diff --git a/images/staff/dog.jpg b/images/staff/dog.jpg new file mode 100644 index 0000000000000000000000000000000000000000..718e5b841cac40ac4ebe67556a424d16bbe1cc34 Binary files /dev/null and b/images/staff/dog.jpg differ diff --git a/images/staff/energy.jpg b/images/staff/energy.jpg new file mode 100644 index 0000000000000000000000000000000000000000..132a78bda937e42cd980f6b009f140c9ee95f3c2 Binary files /dev/null and b/images/staff/energy.jpg differ diff --git a/images/staff/kevyin30.jpg b/images/staff/kevyin30.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cfa4c0a9a3ee797c0111d2ca7ddd7dcd65ee3758 Binary files /dev/null and b/images/staff/kevyin30.jpg differ diff --git a/images/staff/kirby_sword.png b/images/staff/kirby_sword.png new file mode 100644 index 0000000000000000000000000000000000000000..7e66ae7897d2defaaed7dbeaeebbaad9874ce8ee Binary files /dev/null and b/images/staff/kirby_sword.png differ diff --git a/images/staff/lebron_james.jpeg b/images/staff/lebron_james.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..2633b0d1dbafaaa63f94029fe094541bc2237b34 Binary files /dev/null and b/images/staff/lebron_james.jpeg differ diff --git a/images/staff/this_is_fine.png b/images/staff/this_is_fine.png new file mode 100644 index 0000000000000000000000000000000000000000..9c63eea130b8a88c4be77a457237f1c31bd1d4e3 Binary files /dev/null and b/images/staff/this_is_fine.png differ