Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Instructions Create a TeeShirt class for Toby's Tee Shirt Company. Fields include: order Number - of type int . size - of type String color

image text in transcribed
image text in transcribed
image text in transcribed
Instructions Create a TeeShirt class for Toby's Tee Shirt Company. Fields include: order Number - of type int . size - of type String color - of type String . price - of type double Create set methods for the order number. size, and color and get methods for all four fields. The price is Is determined by the size: $22.99 for XXL or XXXL, and $19.99 for all other sizes. Create a subclass named custontee that descends from Teenart and includes a red named slogan (of type String to hold the slogan requested for the shirt, and include get anset methods for this field An example of the DemoTees program is shown below: Order #100 Description: XXL blue Price: $22.99 Order #101 Description: s gray Price: $19.99 Order #102 Description: L red Price: $19.99 Slogan: Born to have fun Order #104 Description: XXXL black Price: $22.99 Slogan: Wilson for Mayor TeeShirt.java + > CustomTee.java DemoTees.java 1 public class CustomTee extends TeeShirt 2 { 3 private String slogan; 4 public void setslogan(String sign) 5 { 6 // write your code here 7 } 8 public String getslogan() 9 { 10 1/ write your code here 3

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Beginning Databases With PostgreSQL From Novice To Professional

Authors: Richard Stones, Neil Matthew

2nd Edition

1590594789, 978-1590594780

More Books

Students also viewed these Databases questions