diff --git a/Products.java b/Products.java index 9de9ba59199d09920199baac79809b41c4036b29..74e3303c882d3c1fa64330d74d9faa9b9d36d127 100644 --- a/Products.java +++ b/Products.java @@ -1,6 +1,16 @@ /* check out these products! */ public class Products { /* a good class, but not as good as cse391 */ + public Product qsun05Product() { + return new Product( + "walking boba", + "it walks by itself so u dont have to hold it with ur hands", + "walkingBoba.jpg", + "a boba that can walk", + 69.69 + ); + } + public Product boschenProduct() { return new Product( "sleepCoke", @@ -13,6 +23,16 @@ public class Products { /* a good class, but not as good as cse391 */ + public Product smayanProduct() { + return new Product( + "Dollar Bill", + "one dollar in cash", + "dollar_bill.jpg", + "Image of a one-dollar bill", + 1.00 + ); + } + public Product benoreProduct() { return new Product( "Taylor Swift - Folklore Vinyl", @@ -23,7 +43,27 @@ public class Products { /* a good class, but not as good as cse391 */ ); } + public Product ekimji1Product() { + return new Product( + "Gudetama", + "perfect", + "gudetama.jpg", + "Lazy egg", + 1000.0 + ); + + } + public Product bohanz04Product() { + return new Product( + "CSE351 hw problem", + "A confusing problem faced", + "test2.jpg", + "image of that problem", + 1.00 + ); + } + public Product kevinh33Product() { return new Product( "Duolingo owl", @@ -230,6 +270,16 @@ public class Products { /* a good class, but not as good as cse391 */ ); } + public Product helenasProduct() { + return new Product( + "Stan the Stand", + "A true gentleman", + "StanTheStand.jpg", + "A music stand with a top hat and rose playing a djembe", + 391.0 + ); + } + public Product aryasProduct() { return new Product( "Monkey", @@ -798,6 +848,17 @@ public class Products { /* a good class, but not as good as cse391 */ ); } + + public Product wgong2Product() { + return new Product( + "Robot Cat", + "Robotic Cat, your ideal pet!", + "360_F_555938384_8LsT1k41T4hnSNeSI0ahqYt9Ug03bJkW.jpg", + "A cat, that's a robot", + 12345 + ); + } + public Product pranavntProduct() { return new Product( "Celsius Essentials 1000 pack", @@ -807,4 +868,44 @@ public class Products { /* a good class, but not as good as cse391 */ 1000.0 ); } + + public Product mshumaProduct() { + return new Product( + "Violin Mutes 100 pack", + "These mutes will keep your roommates asleep", + "violin-picture.jpeg", + "Violin Mutes", + 100.0 + ); + } + + public Product aagateProduct() { + return new Product( + "Meta quest", + "a virtual reality headset", + "metaquest.jpg", + "A meta quest 3 on Amazon", + 9.00 + ); + } + + public Product acuraIntegra() { + return new Product ( + "Acura Integra", + "Acura Integra", + "acura.jpg", + "Acura Integra", + 52400 + ); + } + + public Product shangy24Product() { + return new Product( + "Windows 10 Pro", + "An operating system made by Microsoft", + "win10.jpg", + "Windows 10 Default Wallpaper", + 199.99 + ); + } } diff --git a/Staff.java b/Staff.java index 2cd8ccad6632c63a5c0c5826a06307b8243736b5..635ec211f8d151ce37d90b54db10f756023c64a7 100644 --- a/Staff.java +++ b/Staff.java @@ -1,5 +1,26 @@ public class Staff { + public Employee qsun05() { + return new Employee( + "Kelsey Sun", + "Professional mattress tester", + "Likes to sleep", + "comfy_bed.jpg", + "bed" + ); + } + + public Employee smayan(){ + return new Employee( + "Smayan Nirantare", + "CS Student", + "I'm hungry", + "travis_scott.jpg", + "Travis Scott" + ); + } + + public Employee boschen() { return new Employee( "Boshan Chen", @@ -9,7 +30,15 @@ public class Staff { "umm.." ); } - + public Employee ekimji() { + return new Employee( + "Esther", + "student", + "local point demon", + "gudetama.jpg", + "gudetama with balloon" + ); + } public Employee benore() { return new Employee("Ben", @@ -20,6 +49,16 @@ public class Staff { } + public Employee bohanz04() { + return new Employee( + "Bryan Zhao", + "Student", + "abcdefg stuff", + "test1.jpg", + "hope to get internship" + ); + } + public Employee cuperido() { return new Employee( "Young You", @@ -204,6 +243,16 @@ public class Staff { ); } + public Employee helenaz9() { + return new Employee( + "Helena", + "Student", + "Frequents Lander desk water fountain", + "penguin.jpg", + "A ceramic penguin" + ); + } + public Employee cjobes() { return new Employee( "Colton", @@ -818,6 +867,18 @@ public class Staff { "Norman Rockwell Self-Portrait" ); } + public Employee wgong21() { + return new Employee( + "William", + "Student", + "want to minor in history", + "paradox-interactive.jpg", + "Paradox Interactive Logo" + ); + + + } + public Employee pranavnt() { return new Employee( "Pranav", @@ -827,5 +888,43 @@ public class Staff { "celsius picture" ); } + public Employee mshuma() { + return new Employee( + "Mariana", + "Student", + "I like violin", + "violin-picture.jpeg", + "violin picture" + ); + } + public Employee aagate() { + return new Employee( + "Arohan", + "Student", + "doing homework", + "sloth.jpg", + "picture of a sloth" + ); + } + + public Employee kristong() { + return new Employee ( + "Kris", + "Student", + "Hello", + "boy.jp", + "ðŸ™" + ); + } + + public Employee shangy24() { + return new Employee( + "Shangzhen Yang", + "Student", + "Hello, World!", + "your-name.jpg", + "Wallpaper of Movie Your Name" + ); + } } diff --git a/images/products/StanTheStand.jpg b/images/products/StanTheStand.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1a7be3ebfbcb05618f32f6abf0fe96605189de46 Binary files /dev/null and b/images/products/StanTheStand.jpg differ diff --git a/images/products/acura.jpg b/images/products/acura.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17502134e99794c51ee037b4d91b45fd2942bf85 Binary files /dev/null and b/images/products/acura.jpg differ diff --git a/images/products/chocolate_ice_cream.jpg b/images/products/chocolate_ice_cream.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a987e0df5e5481998694eacb2f9bc66f07ebf95f Binary files /dev/null and b/images/products/chocolate_ice_cream.jpg differ diff --git a/images/products/dollar_bill.jpg b/images/products/dollar_bill.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9e5a9ec1f6e39cce8382ff6d59536ac016aa52e2 Binary files /dev/null and b/images/products/dollar_bill.jpg differ diff --git a/images/products/gudetama.jpg b/images/products/gudetama.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1bde2dc77c41a171a9b25223e52acd05fa844e38 Binary files /dev/null and b/images/products/gudetama.jpg differ diff --git a/images/products/metaquest.jpg b/images/products/metaquest.jpg new file mode 100644 index 0000000000000000000000000000000000000000..40a7ec977cd3120a1b4c92dae52586cf016a8819 Binary files /dev/null and b/images/products/metaquest.jpg differ diff --git a/images/products/test2.jpg b/images/products/test2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..20cdab1ea00dea217026843230381259fa42fa79 Binary files /dev/null and b/images/products/test2.jpg differ diff --git a/images/products/violin-photo.jpeg b/images/products/violin-photo.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..4eac623c89bd5d1cc2489b4eab76a3be3cd39ab3 Binary files /dev/null and b/images/products/violin-photo.jpeg differ diff --git a/images/products/walkingBoba.jpg b/images/products/walkingBoba.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cbb2c8d6dbc6c8f592e44c6cd43dc7e8c86cc48c Binary files /dev/null and b/images/products/walkingBoba.jpg differ diff --git a/images/products/win10.jpg b/images/products/win10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d0698b8fcc5b4530228013e56543508e803ea78 Binary files /dev/null and b/images/products/win10.jpg differ diff --git a/images/staff/360_F_555938384_8LsT1k41T4hnSNeSI0ahqYt9Ug03bJkW.jpg b/images/staff/360_F_555938384_8LsT1k41T4hnSNeSI0ahqYt9Ug03bJkW.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e06074748ec55968aafe8c513acb3a7dee96e8c7 Binary files /dev/null and b/images/staff/360_F_555938384_8LsT1k41T4hnSNeSI0ahqYt9Ug03bJkW.jpg differ diff --git a/images/staff/bed.jpg b/images/staff/bed.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7f2cd3ff9aaff87102ed573655ea80e3807c9223 Binary files /dev/null and b/images/staff/bed.jpg differ diff --git a/images/staff/boy.jpg b/images/staff/boy.jpg new file mode 100644 index 0000000000000000000000000000000000000000..265268e2ee4615dc07007592a793338d956fc2d8 Binary files /dev/null and b/images/staff/boy.jpg differ diff --git a/images/staff/nice_bed.jpg b/images/staff/nice_bed.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3aea755cd7d886ba1a4fac6c9641d263bd9ed47e Binary files /dev/null and b/images/staff/nice_bed.jpg differ diff --git a/images/staff/paradox-interactive.jpg b/images/staff/paradox-interactive.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c0e86d731b984845d012eadee526847f0b82001e Binary files /dev/null and b/images/staff/paradox-interactive.jpg differ diff --git a/images/staff/penguin.jpg b/images/staff/penguin.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6b54957689cba06a742522e93fb370e2c1b776fa Binary files /dev/null and b/images/staff/penguin.jpg differ diff --git a/images/staff/sloth.jpg b/images/staff/sloth.jpg new file mode 100644 index 0000000000000000000000000000000000000000..247e4e2355a0c676d49ff065bbf4be19e4972e19 Binary files /dev/null and b/images/staff/sloth.jpg differ diff --git a/images/staff/test1.jpg b/images/staff/test1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..20cdab1ea00dea217026843230381259fa42fa79 Binary files /dev/null and b/images/staff/test1.jpg differ diff --git a/images/staff/travis_scott.jpg b/images/staff/travis_scott.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3bc0dd8bb92a95cd9646fc7e2d4f2dfde442e269 Binary files /dev/null and b/images/staff/travis_scott.jpg differ diff --git a/images/staff/violin-photo.jpeg b/images/staff/violin-photo.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..4eac623c89bd5d1cc2489b4eab76a3be3cd39ab3 Binary files /dev/null and b/images/staff/violin-photo.jpeg differ diff --git a/images/staff/your-name.jpg b/images/staff/your-name.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8b25e1e4c366a016229604c8f51936e6a49b00ee Binary files /dev/null and b/images/staff/your-name.jpg differ