Skip to content
Snippets Groups Projects
Products.java 22.2 KiB
Newer Older
Colton Jobes's avatar
Colton Jobes committed
/* check out these products! */
public class Products { /* a good class, but not as good as cse391 */
Boshan Chen's avatar
Boshan Chen committed
    public Product boschenProduct() {
	return new Product(
		"sleepCoke",
		"It will help you a nice sleep",
		"sleepCoke.jpg",
		"really good, has sleepy coffine",
		9.98	
		);
    }
    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",
			    "A vinyl containing the deluxe edition of Taylor Swift's Grammy-winning FFolklore album.",
			    "folkloreac.png",
			    "The album cover for Taylor Swift's folklore album.",
			    29.99
			    );
    }

Esther's avatar
Esther committed
    public Product ekimji1Product() {
	return new Product(
		    "Gudetama",
Esther's avatar
Esther committed
		    "gudetama.jpg",
		    "Lazy egg",
		    1000.0
		    );
Esther's avatar
Esther committed
    }
       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",
			    "He's super angry",
			    "duo_angry.jpg",
			    "His anger levels rising",
			    150.00
			    );
    }
	
    public Product acsparksProduct() {
    	return new Product(
		"Free Beans",
		"A bunch of free, loose beans",
		"beans.jpg",
		"Image of free beans",
		1.99
		);
    }
    public Product cuperidoProduct() {
	return new Product( 	
	    "Pillow",
	    "Pillow to make you sleep better",
            "pillow.jpg",
            "Image of the pillow",
            19.99	    
	);
    }	    

Calvin Tsai's avatar
Calvin Tsai committed
    public Product ctsai7Product() {
	return new Product(
		"G. Loomis GLX Casting Rod",
		"Fishing rod",
		"g_loomis_glx.jpg",
		"A g.loomis casting rod",
		460.00
		);	
    }

    public Product davyhyunProduct() {
	return new Product( 	
	    "Protein Powder",
	    "Protein Powder to make you huge",
            "ProteinPowder.jpg",
            "Image of our Protein Powder product",
            23.97	    
	);
    }	    

    public Product yverma23sProduct() {
	return new Product(
	    "Lebron 2's",
	    "Nike basketball shoes",
	    "Lebron2.png",
	    "Image of black and white nikes",
	    105.97
	);
    }	    
Joshua Yin's avatar
Joshua Yin committed
    public Product joshjyinProduct() {
        return new Product(
            "Dub Hub",
            "Craigslist for UW students",
            "dubhub.jpg",
            "Image of the best college campus",
            99999999999.99
        );
    }
Akshita Amarnath's avatar
Akshita Amarnath committed
    public Product akshitasProduct() {
    	return new Product(
	    "Lake",
	    "Pretty lake by the mountains",
	    "Lake.jpg",
	    "Image of a snowy lake with moutains in the background",
	    5.99	    
	);
    }
Akshita Amarnath's avatar
Akshita Amarnath committed

    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",
	    "Biggest Piece of Dorito Ever!!!",
	    "dorito_piece.jpg",
	    "Image of the Dorito Piece",
	    99999.99	    
	);
    }
Chang's avatar
Chang committed
    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",
            "Just the good part (spicy)",
            "cheetos.png",
            "News about cheeto dust taking over",
            42.024
        );
    }
    public Product lwang42sProduct() {
	    return new Product(
			    "Big Burger",
			    "Biggest and best burger",
			    "bigburger.jpg",
			    "Picture of a big burger",
			    1.50
			    );
    }
    public Product mehulcsProduct() {
    	return new Product(
	    "Giant Gummy Bear",
Mehul Chaudhari's avatar
Mehul Chaudhari committed
	    "Big fatty tasty gummy bear",
	    "gummybear.jpg",
	    "Picture of a beautiful gummy bear",
	    10000.10	    
	);
    }
Kevin Xiao's avatar
Kevin Xiao committed
    public Product kevinsProduct(){
	return new Product(
	    "Basketball",
Kevin Xiao's avatar
Kevin Xiao committed
	    "Bouncy bouncy orange ball",
Kevin Xiao's avatar
Kevin Xiao committed
	    "basketball.jpg",
	    "Picture of a basketball",
	    42.0
	);
    }

Colton Jobes's avatar
Colton Jobes committed
    public Product joshsProduct() {
        return new Product(
            "Dirt",
            "The good stuff",
            "dirt.jpeg",
            "some normal brown dirt",
            0.0
        );
Colton Jobes's avatar
Colton Jobes committed
    }

    public Product antoniosProduct() {
	return new Product(
	    "Emacs",
	    "It's better than Vim",
	    "emacs_icon.png",
	    "GNU emacs logo",
	    0.0
	);
    }
    public Product ataberksProduct() {
        return new Product(
            "Turkish Dumplings",
            "Dough often filled with beef",
            "turkishDumplings.jpg",
            "The dumplings themselves",
            7.25
        );
    }

    public Product iansProduct() {
        return new Product(
            "Pasta",
            "Very nutritious",
            "pasta.jpg",
            "Bowl of pasta",
            100.0
        );
    
    }

    public Product bassilsProduct() {
	    return new Product(
		"Straw Hat",
		"The hat of a hero",
		"moogiwara.jpg",
		"the straw hat",
		1000.0
		);
Ian Delong's avatar
Ian Delong committed
    }
    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
	);
    }

Arya Gummadi's avatar
Arya Gummadi committed
    public Product aryasProduct() {
        return new Product(
	    "Monkey",
	    "Just an animal",
	    "monkey.jpg",
	    "monkey image",
	    4.29
	);
  
    public Product evansProduct() {
	return new Product(
	    "Dented Trombone",
	    "Super wrecked trombone but still plays wel",
	    "trom.png",
	    "very higih quality tromBONE",
	    99.10
	);
    }
Cat Lam's avatar
Cat Lam committed

    public Product petersProduct() {
        return new Product(
	    "Goggles",
	    "Better then reality",
	    "visiongoggles.jpg",
	    "image of goggles",
	    3498
	);
    }

Cat Lam's avatar
Cat Lam committed
    public Product tuongcatProduct() {
        return new Product(
            "Panda",
            "panda",
            "panda.jpg",
            "panda image",
            10000
        );
    }

    public Product hmanthaProduct() {
	return new Product(
		"Murakami Rug",
		"Rainbow flower rug",
		"murakami.jpeg",
		"Rainbow flower rug",
		699.99
		);
    public Product raosProduct() {
	return new Product(
	    "Keychain",
	    "A cool keychain",
	    "keychain.jpg",
	    "image of a cool keychain",
	    5.95
	);
    }
Isaac Wu's avatar
Isaac Wu committed
    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
        );
    public Product aamangusProduct() {
    	return new Product(
		"Broody Chicken",
		"It screams!",
		"Discord Chicken.PNG",
		"image of a broody chicken",
		1.01
	);
Isaac Wu's avatar
Isaac Wu committed
    }

    public Product noahhucksProduct() {
        return new Product(
            "CSE2 Building (Real)",
            "no refunds",
            "Gates-Center_0001.jpg",
            "UW Gates Center Building",
            20.00
Noah Huck's avatar
Noah Huck committed
		);
	}
Tanjal Shukla's avatar
Tanjal Shukla committed
    public Product tanjalsProduct() {
	return new Product(
		"Creatine",
		"Big muscle",
		"creatine.jpg",
		"Number 1 lifting supplement",
		39.95
	);
    }
Tanjal Shukla's avatar
Tanjal Shukla committed

Keshav's avatar
Keshav committed
    public Product keshavsProduct() {
	return new Product(
		"Dirt",
		"Great for plants!",
		"dirt.jpg",
		"image of the product",
		4.67
Keshav's avatar
Keshav committed
		);
	}
Keshav's avatar
Keshav committed

    public Product dhvbnlProduct() {
Dhruv Bansal's avatar
Dhruv Bansal committed
        return new Product (
                "proteen",
                "gets you jacked",
                "proteen.jpg",
                "image of proteen powder",
                9.99
        );
Dhruv Bansal's avatar
Dhruv Bansal committed
    }
    public Product yixuan19Product(){
    	return new Product (
		"Goomba",
		"The No.1 VTB from Hololive",
		"Avatar.png",
Yixuan Wang's avatar
Yixuan Wang committed
		"Picture of Gawr Gura",
		114514.0
    public Product swangsamProduct(){
   	return new Product(
		"Pullup Bar",
		"It builds back",
		"pullup.png",
		"pullup bar image",
		1.2
Sriram Kutty's avatar
Sriram Kutty committed
	);
    }
Sriram Kutty's avatar
Sriram Kutty committed

    public Product ank05Product(){
    	return new Product(
		"Water",
		"Yum",
		"water.jpg",
		"bottled water",
		100
	);	
	
    }
	
    public Product akhils22Product(){
	return new Product(
		"Avocado",
		"Specially made in a Pineapple Under the Sea",
		"avocado.jpg",
		"Mmm...Tasty Avocado!",
		22.22
	);
    }
    public Product ikshitasProduct(){
        return new Product(
                "Ice Cream",
                "Sweet treat!",
                "icecream.jpg",
                "ice cream",
                10.0
        );

    }

    public Product skuttyProduct() {
	return new Product(
	    "Rake",
	    "A rake to gather leaves",
	    "rake.jpg",
	    "image of a rake",
	    5959.59

    public Product erinsongProduct() {
	return new Product(
		"Ramen",
		"Perfect meal on a cold day",
		"ramen.jpg",
		"Bowl of soup with noodles and sliced boiled egg",
		15.50
	);
    }
    public Product siyeeProduct() {
	return new Product(
		"Tulips",
		"Some pretty flowers to make you happier!",
		"tulips.jpg",
		"Pink, yellow, purple, and orange tulip flowers in a garden.",
		49.99
	);
Lirong Que's avatar
Lirong Que committed

    public Product lq22Product() {
        return new Product(
                "Large Fries",
                "Delicious McDonald's Fries!",
                "largeFries.jpg",
                "A pack of large size McDonald's Fries",
                4.99
Anchor's avatar
Anchor committed
    
    public Product uwzhuohuProduct() {
        return new Product(
                "Visual Studio Code",
                "Surprise surprise there is a text editor with even GUI!",
                "vscode.png",
                "The best editor, except IDEA:)",
                0
        );
    }
T. Zhou's avatar
T. Zhou committed
    public Product tyzhou05Product() {
       return new Product(
            "Sushi Bake!",
            "Delicious sushi pizza made in my dorm (real)",
            "sushibake.jpg",
            "Stack image of seaweed, rice, and deliciousness",
            15 
       );
    }
Kirupa Gunaseelan's avatar
Kirupa Gunaseelan committed
    
    public Product kirupasProduct() {
    	return new Product(
Kirupa Gunaseelan's avatar
Kirupa Gunaseelan committed
			"Park",
			"A nice walk in the park",
Kirupa Gunaseelan's avatar
Kirupa Gunaseelan committed
			"park.jpg",
Kirupa Gunaseelan's avatar
Kirupa Gunaseelan committed
			"A beautiful park",
	public Product JadenProduct() {
    	return new Product(
			"Jaden",
			"A student who is working out",
			"JungPT.jpg",
			"Jaden Working out",
			100
	);
    }
Zach Hanczyc's avatar
Zach Hanczyc committed

    public Product zhanczycProduct() {
	return new Product(
		"Soccer Ball",
		"A ball for soccer",
		"soccer_ball.jpg",
		"a soccer ball",
		12.99
	);
    }
    public Product sluong05Product() {
        return new Product(
                "Fluffy cow",
                "A fluffy cow to hug and feel warm and cozy",
                "fluffyCow.jpg",
                "Highland cow",
                129.99
        );
    }
    public Product shen824Product() {
	return new Product(
		"Magic Keyboard",
		"Wireless, Convenience",
		"keyboard.jpg",
		"keyboard",
		99.00
	);
    }
    public Product robertdlProduct(){
	return new Product(
		"Sunshower Sam",
		"Ayo; it's your new best friend! Say hello to Sunshower Sam! (He is alive)",
		"sunshower.png",
		"Sunshower Sam",
		86.79
	);
    }
    public Product cleahwProduct() {
	return new Product (
		"White chocolate blueberry cheesecake",
		"A slice of homemade blueberry cheesecake I made!",
		"cheesecake.jpg",
		"A slice of blueberry cheesecake with blueberry sauce ontop",
		10.99
	);
    }

    public Product zliu44Product(){
        return new Product (
                "Coffee mug",
                "Made by pure clay and human made not by machine",
                "mug.jpg",
                "a good looking mug is on the table",
                25.99
        );
    }


Leo Liu's avatar
Leo Liu committed
    public Product ryrozProduct() {
	return new Product(
		"A broken computer",
		"A computer that has a static screen.",
		"static.jpg",
		"A picture of static",
		4.99
	);
    }

    public Product yangsamProduct() {
	return new Product(
		"Chocolate chip cookies",
		"Fresh baked cookies with milk chocolate",
		"cookie.jpg",
		"A golden cookie with chocolate chips",
		3.99
	);
    }
    public Product ronnyeProduct(){
        return new Product(
                "Comfortable slippers",
                "Cute slippers to wear",
                "comfy_slippers.jpg",
                "A picture of cow slippers",
                18.88
        );
    }
    public Product avaishProduct(){
	return new Product(
		"a sock",
		"it'll make dobby very happy",
		"sock.jpg",
		"a grey and orange sock (very fashionable!)",
		183.41
	);
    }
    public Product janelleProduct() {	
	return new Product(
		"Keyboard cover",
		"Protects keyboard",
		"keyboard_protecc.png",
		"A keyboard cover, slick design",
		5.55
	);
    }

    public Product spzappaProduct() {
	return new Product(
		"Elkay LZS8WSLK EZH2O Bottle Filling Station",
		"greatest water fountain of all time",
		"waterfountain.png",
		"Water fountain w/ water bottle filler",
Sam Zappa's avatar
Sam Zappa committed
	);
    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
	);
    }
Rosenlind's avatar
Rosenlind committed
	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
	
	public Product mbalakProduct() {
        return new Product(
            "Big Mac",
            "McDonald's Big Mac",
            "BigMac.jpeg",
            "image of Big Mac",
            5
    public Product ccsekhar20Product() {
	    return new Product(
		"Coffee",
		"Good coffee",
		"coffee.jpeg",
		"Picture of coffee",
		4.99
	);

	public Product samsharProduct() {
	    return new Product(
		"Spray Ketchup",
		"Ketchup that you can spray on",
		"ketchup.jpg",
		"Example image of spray on ketchup",
		4.99
	);
    }
Sami Sharma's avatar
Sami Sharma committed
	public Product SprayKetchup() {
        return new Product(
            "SprayKetchup",
            "Spray on Ketchup",
            "ketchup.jpg",
            "An image of what a spray on ketchup bottle would look like",
            5.99

    public Product cscs24Product() {
            return new Product(
                "Coffee",
                "Good coffee",
                "coffee.jpeg",
                "Picture of coffee",
                4.99
        );
    }

    public Product jz283() {
            return new Product(
                "McLaren 720s",
                "A light and strong supercar",
                "720s.jpeg",
                "Picture of the supercar",
                209900.00
Truong Van Ly's avatar
Truong Van Ly committed
        public Product tly6() {
        return new Product(
        "Intel Core i9 14900K",
        "Great Performance in Creative Apps",
        "Intel-CoreI9.jpeg",
        "Picture of Intel Processor",
        589.00
    } 

    public Product sjeyteProduct() {
	    return new Product(
		"AMD Ryzen 7 7800X3D",
                "Best gaming chip currently!",
                "7800x3d.jpeg",
                "Picture of the AMD processor.",
                449.00
	);
    public Product ggsmadhuProduct() {
        return new Product(
            "Coca Cola",
            "Best soft drink",
            "coke.jpeg",
            "Coca Cola can",
            1.50
        );
    public Product chetan7() {
            return new Product(
                "Porche 911",
                "Best car ever made",
                "911.jpg",
                "A porche 911",
                114000.00
            );
Shivani Godse's avatar
Shivani Godse committed
    
    }

    public Product sgodse() {

	    return new Product(
		"Lindt Chocolate", 
		"Rich, tasty chocolate",
		"lindt.jpg",
		"Picture of a lindt milk chocolate package",
		2.00
	        }

    public Product sprofit() {
	return new Product(
	    "Baseball Glove",
	    "Premium leather baseball glove",
	    "BaseballGlove.jpeg",
	    "Picture of a Rawlings baseball glove",
	    399.99
Shivani Godse's avatar
Shivani Godse committed
	);
Nathan Li's avatar
Nathan Li committed

    public Product Infinite() {
    	return new Product(
Nathan Li's avatar
Nathan Li committed
		"INFINITY******************************************************************************************************",
Nathan Li's avatar
Nathan Li committed
		"Pay for the whole infinity, use the whole infinity! $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$",
		"winfinite.png",
		"Depicted is the strongest UW CSE Sorcerer when presented with the King of Merge Conflicts. The strongest Sorcerer humbly assures the world by stating \"Nah, I'd win\"",
		01
	);
    }
Jessie Sun's avatar
Jessie Sun committed

    public Product jsun16() {
            return new Product(
                            "Massager Heating Pad for Neck and Shoulder",
                            "Suitable for people to release muscle tension and promote blood flow.",
                            "Neck_Shoulder_Heating_Pad.jpeg",
                            "Electric Heating Pad for Neck and Shoulder",
			    68.00
                            );
    public Product azitabProduct() {
	return new Product(
		"Cinnamon Roll Plushie", 
		"Giant Cinnamon Roll Plushie", 
		"cinnamonroll.jpg", 
		"Picture of Cinnamon Roll Plushie",
	        500.00
	);
Jessie Sun's avatar
Jessie Sun committed

Tony's avatar
Tony committed
    public Product tonywuProduct() {
        return new Product(
                "Giant Tree",
                "Giant Tree, kind of looks weird. Price won't cause floating point error.",
                "Tree.webp",
                "Big Tree",
                15000000000000000000000000000000000000000000001.00
        );

    }
WILLIAM's avatar
WILLIAM committed

     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
        );
	}

Pranav Teegavarapu's avatar
Pranav Teegavarapu committed
    public Product pranavntProduct() {
	return new Product(
		"Celsius Essentials 1000 pack",
		"1000 pack of celsius essentials. will keep you awake.",
		"celsius-picture.png",
		"Celsius Essentials",
		1000.0
	);
    }
Mariana Shuman's avatar
Mariana Shuman committed
   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
	);
Kris Tong's avatar
Kris Tong committed

	public Product acuraIntegra() {
        return new Product (
            "Acura Integra",
            "Acura Integra",
            "acura.jpg",
            "Acura Integra",
			52400
Shangzhen Yang's avatar
Shangzhen Yang committed
    public Product shangy24Product() {
        return new Product(
            "Windows 10 Pro",
            "An operating system made by Microsoft",
            "win10.jpg",
            "Windows 10 Default Wallpaper",
            199.99
Mariana Shuman's avatar
Mariana Shuman committed
        );
Sirjan Singh's avatar
Sirjan Singh committed
    public Product sirjan1Product() {
Sirjan Singh's avatar
Sirjan Singh committed
    	return new Product("A ball for soccer", "used for playing... soccer", "soccerball.jpg", "a..soccer..ball", 10000.0);

Mariana Shuman's avatar
Mariana Shuman committed
    }
Colton Jobes's avatar
Colton Jobes committed
}