Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In this assignment, you will be required to write a Java program to keep track of a baseball team's statistics. A team consists of up

image text in transcribedimage text in transcribedimage text in transcribedimage text in transcribedimage text in transcribedimage text in transcribed

In this assignment, you will be required to write a Java program to keep track of a baseball team's statistics. A team consists of up to 40 players, each of whom has a certain number of hits and errors. UML The UML Diagram for all the classes specified below is as follows: Team Static Variables: + MAX_PLAYERS: int = 40 {readOnly} Player Member Variables: - name : String - numHits : int - numErrors: int Constructors: + Player Member Variables: - players: Player Constructors: + Team Team Manager Static Variables: + MAX_TEAMS: int = 5 {readOnly) Getters: + getName(): String + getNum Hits(): int + getNumErrors(): int Member Variables: teams : Team Static Methods: + main(args : String(): void Setters: + setName(name : String) : void + setNum Hits(numHits : int) : void throws IllegalArgumentException + setNumErrors(numErrors: int) : void throws IllegalArgumentException Methods: + clone(): Object + equals(obj : Object): boolean + size(): int + addPlayer(p: Player, position : int) : void throws illegalArgumentException, FullTeamException + removePlayer(position : int) : void throws IllegalArgumentException + getPlayer(position :int): Player throws illegalArgumentException + getLeader(stat: String): Player throws illegalArgumentException + toString(): String Methods: + toString : String Required Classes The following sections describe classes which are required for this assignment. Each section provides a description and the specifications necessary to complete each class. If you feel that additional methods would be useful, feel free to add them during your implementation as you see fit. However, all the variables and methods in the following specifications must be included in your project. 1. Player Write a fully-documented class named Player which contains the player's name (String), number of hits (int), and number of errors (int). You should provide accessor and mutator methods for each variable as well as a default constructor. For the mutator of the hits and errors variables, you should throw an exception if the new value is less than 0. You should also provide a toString0 method that returns a printable representation of the player and his statistics (hits and errors). 2. Team Write a full-documented class named Team that stores all Player objects that belong to a particular team. The Player objects should be stored in an array. There should be a maximum of 40 Player objects allowed, a number which should be defined as a final variable. The class will be based on the following ADT specification: public static final int MAX_PLAYERS = 40; public Team () Brief: Construct an instance of the Team class with no Player objects in it. o Postconditions: This Team has been initialized to an empty list of Players. public Object clone () o Brief: . Generate a clone of this Team. o Returns: The return value is a clone of this Team. Subsequent changes to the clone will not affect the original, nor vice versa. Note that the return value must be typecast to a Team before it can be used.. public boolean equals (Object obj) o Brief: Compare this Team to another object for equality. o Parameters: .obj - an object to which this Team is compared o Returns A return value of true indicates that obj refers to a Team object with the same Players in the same order as this Team. Otherwise, the return value is false. If obj is null or it is not a Team object, then the return value is false. o Note: When comparing equality between two Player objects, you must verify that their names, hits, and errors are all the same. Using the operator will simply check to see if the two variables refer to the same Player object, which does not take into consideration that two different Player objects can actually represent the same person. To solve this problem, you can either check that each of the properties of the two objects are the same name, hits, errors) inside of this method, or you may simplify this process by implementing an equals method (similar to this one) for the Player class. public int size() o Brief Determines the number of Players currently in this Team. o Preconditions: This Team object has been instantiated. o Returns: The number of Players in this Team. public void addPlayer (Player p, int position) Brief: Adds a Player to the team at the indicated position in the lineup. public void addPlayer (Player p, int position) o Brief: Adds a Player to the team at the indicated position in the lineup. o Parameters: . p - the new Player object to add to this Team. . position - the position in the lineup where the Player will be inserted. o Preconditions: This Team object has been instantiated 1 S position s players_currently_in_team + 1. The number of Player objects in this Team is less than MAX_PLAYERS. o Postconditions: The new Player is now stored at the desired position in the Team. All Players that were originally in positions greater than or equal to position are moved back one position. . E.g. If there are 5 Players in a Team, positions 1-5, and you insert a new Player at position 4, the new Player will now be at position 4, the Player that was at position 4 will be moved to position 5, and the Player that was at position 5 will be moved to position 6). o Throws: IllegalArgumentException - Indicates that position is not within the valid range.. FullTeamException - Indicates that there is no more room inside of the Team to store the new Player object. o Note: Position refers to the position in the Team lineup and not the position inside the array. Inserting a Player to position (players_currently_in_team + 1) is effectively the same as adding a Player to the end of the Team. public void removePlayer(int position) Brief: Removes a Player from the team at the indicated position in the lineup. o Parameters: position - the position the from which the Player is to be removed. o Preconditions: This Team object has been instantiated 1 3 position s players_currently_in_team. o Postconditions: The Player at the desired position in the Team has been removed. All Players that were originally in positions greater than or equal to position are moved forward one position. . E.g. If there are 5 Players in a Team, positions 1-5, and you remove the player at position 4, the Player that was at position 5 will be moved to position 4. o Throws: IllegalArgumentException - Indicates that position is not within the valid range.. o Note: Position refers to the position in the Team lineup and not the position inside the array. public player getPlayer(int position) Brief: Returns a reference to a player in the lineup at the indicated position. o Parameters: . position - the position in the lineup from which the Player is to be retrieved. o Preconditions: This Team object has been instantiated. o Returns: The Player from the given index. o Parameters: . position - the position in the lineup from which the Player is to be retrieved. o Preconditions: This Team object has been instantiated. o Returns: The Player from the given index. o Throws IllegalArgumentException - Indicates that position is not within the valid range. o Note: Position refers to the position in the Team lineup and not the position inside the array. public player getLeader (String stat) Note: If you implement this method using 'int' stat (0 or 1 indicating hits or errors), this is acceptable as well. o Brief: Return the Player with the best value in the given statistic ("hits" or "errors"). o Parameters: stat - either "hits" or "errors". o Preconditions: This Team object has been instantiated. o Returns: The Player with the best stat. o Throws: IllegalArgumentException - Indicates that indicated stat was neither "hits" nor "errors". Note: Remember that HIGHER hits are good, whereas LOWER errors are good. public void printAllPlayers() o Brief: Prints a neatly formatted table of each Player in the Team on its own line with its position number as shown in the sample output. o Preconditions: This Team object has been instantiated. o Preconditions: A neatly formatted table of each Player in the Team on its own line with its position number has been displayed to the user. o Hint: . If your toString method is implemented correctly as described below, you will simply need to call it and print the results to the user.. public Sring toString() Brief: Gets the String representation of this Team object, which is a neatly formatted table of each Player in the Team on its own line with its position number as shown in the sample output. o Returns: The String representation of this Team object. 3. Team Manager Write a fully-documented class named TeamManager which tests the methods of the Team class and allows the user to manipulate 5 Team objects by performing operations on it. public static final int MAX TEAMS = 5; 3. Team Manager Write a fully-documented class named TeamManager which tests the methods of the Team class and allows the user to manipulate 5 Team objects by performing operations on it. public static final int MAX_TEAMS = 5; public static void main(String[] args) Brief: The main method runs a menu driven application which first creates an empty Team and then prompts the user for a menu command selecting the operation. The required information is then requested from the user based on the selected operation. Following is the list of menu options and their required information: A) Add Player. . G) Get Player stats. L) Get leader in a stat. R) Remove a player. . P) Print all players. S) Size of team. T) Select team E) Team equals . U) Update stat. Q) Quit. 4. FullTeamException An Exception class which indicates a full roster. Input Format: Each menu operation is entered on its own line and should be case insensitive (i.e. 'q' and 'Q' are the same). make sure that the position, if required, . If not, print an error message and return to the menu. For the Add Player command, if the input information is valid, construct the object accordingly. Otherwise, print an error message and return to the menu. You may assume that the lengths of the input for the player names are less than 25 characters long, and that the number of hits and errors fits into an int variable. Output Format: All lists must be printed in a nice and tabular form as shown in the sample output. You may use C style formatting as shown in the following example. The example below shows two different ways of displaying the name and address at pre-specified positions 21, 26, 19, and 6 spaces wide. If the '-'flag is given, then it will be left-justified (padding will be on the right), else the region is right-justified. The 's'identifier is for strings, the 'd' identifier is for integers. Giving the additional 'O' flag pads an integer with additional zeroes in front. String name = "Doe Jane"; String address = "32 Bayview Dr."; String city = "Fishers Island, NY"; int zip - 6390; System.out.println(String.format("%-215%-265X195/606d", name, address, city, zip)); System.out.printf("%-215%-265X195%06d", name, address, city, zip); Doe Jane 32 Bayview Dr. Fishers Island, NY 26390 Doe Jane 32 Bayview Dr. Fishers Island, NY 26390 Sample Input/Output: 1/ Comment in green, input in red, output in black Welcome to TeamManager! Team 1 is currently selected. // menu Please select an option: A) Add Player. Get Player stats. Get leader in a stat. R) Remove a player. P) Print all players. Size of team. T) Select team Clone team Team equals Update stat. c) Quit. Select a menu option: A Enter the player's name: David Ortiz Enter the number of hits: 542 Enter the number of errors: 10 Enter the position: 1 Player added: David Ortiz 542 hits, 10 errors // menu not shown in the sample input/output Select a menu option: A Enter the player's name: Derek Jeter Enter the number of hits: 83 Enter the number of errors: 20 Enter the position: 1 Player added: Derek Jeter - 83 hits, 20 errors // menu not shown in the sample input/output Select a menu option: P Select team index: 1 Player# Name Hits Errors 1 2 Derek Jeter David Ortiz 83 542 20 10 // menu not shown in the sample input/output Select a menu option: A Enter the player's name: Albert Pujols Enter the number of hits: 222 Enter the number of errors: 15 Enter the position: 2 Player added: Albert Pujols 222 hits, 15 errors In this assignment, you will be required to write a Java program to keep track of a baseball team's statistics. A team consists of up to 40 players, each of whom has a certain number of hits and errors. UML The UML Diagram for all the classes specified below is as follows: Team Static Variables: + MAX_PLAYERS: int = 40 {readOnly} Player Member Variables: - name : String - numHits : int - numErrors: int Constructors: + Player Member Variables: - players: Player Constructors: + Team Team Manager Static Variables: + MAX_TEAMS: int = 5 {readOnly) Getters: + getName(): String + getNum Hits(): int + getNumErrors(): int Member Variables: teams : Team Static Methods: + main(args : String(): void Setters: + setName(name : String) : void + setNum Hits(numHits : int) : void throws IllegalArgumentException + setNumErrors(numErrors: int) : void throws IllegalArgumentException Methods: + clone(): Object + equals(obj : Object): boolean + size(): int + addPlayer(p: Player, position : int) : void throws illegalArgumentException, FullTeamException + removePlayer(position : int) : void throws IllegalArgumentException + getPlayer(position :int): Player throws illegalArgumentException + getLeader(stat: String): Player throws illegalArgumentException + toString(): String Methods: + toString : String Required Classes The following sections describe classes which are required for this assignment. Each section provides a description and the specifications necessary to complete each class. If you feel that additional methods would be useful, feel free to add them during your implementation as you see fit. However, all the variables and methods in the following specifications must be included in your project. 1. Player Write a fully-documented class named Player which contains the player's name (String), number of hits (int), and number of errors (int). You should provide accessor and mutator methods for each variable as well as a default constructor. For the mutator of the hits and errors variables, you should throw an exception if the new value is less than 0. You should also provide a toString0 method that returns a printable representation of the player and his statistics (hits and errors). 2. Team Write a full-documented class named Team that stores all Player objects that belong to a particular team. The Player objects should be stored in an array. There should be a maximum of 40 Player objects allowed, a number which should be defined as a final variable. The class will be based on the following ADT specification: public static final int MAX_PLAYERS = 40; public Team () Brief: Construct an instance of the Team class with no Player objects in it. o Postconditions: This Team has been initialized to an empty list of Players. public Object clone () o Brief: . Generate a clone of this Team. o Returns: The return value is a clone of this Team. Subsequent changes to the clone will not affect the original, nor vice versa. Note that the return value must be typecast to a Team before it can be used.. public boolean equals (Object obj) o Brief: Compare this Team to another object for equality. o Parameters: .obj - an object to which this Team is compared o Returns A return value of true indicates that obj refers to a Team object with the same Players in the same order as this Team. Otherwise, the return value is false. If obj is null or it is not a Team object, then the return value is false. o Note: When comparing equality between two Player objects, you must verify that their names, hits, and errors are all the same. Using the operator will simply check to see if the two variables refer to the same Player object, which does not take into consideration that two different Player objects can actually represent the same person. To solve this problem, you can either check that each of the properties of the two objects are the same name, hits, errors) inside of this method, or you may simplify this process by implementing an equals method (similar to this one) for the Player class. public int size() o Brief Determines the number of Players currently in this Team. o Preconditions: This Team object has been instantiated. o Returns: The number of Players in this Team. public void addPlayer (Player p, int position) Brief: Adds a Player to the team at the indicated position in the lineup. public void addPlayer (Player p, int position) o Brief: Adds a Player to the team at the indicated position in the lineup. o Parameters: . p - the new Player object to add to this Team. . position - the position in the lineup where the Player will be inserted. o Preconditions: This Team object has been instantiated 1 S position s players_currently_in_team + 1. The number of Player objects in this Team is less than MAX_PLAYERS. o Postconditions: The new Player is now stored at the desired position in the Team. All Players that were originally in positions greater than or equal to position are moved back one position. . E.g. If there are 5 Players in a Team, positions 1-5, and you insert a new Player at position 4, the new Player will now be at position 4, the Player that was at position 4 will be moved to position 5, and the Player that was at position 5 will be moved to position 6). o Throws: IllegalArgumentException - Indicates that position is not within the valid range.. FullTeamException - Indicates that there is no more room inside of the Team to store the new Player object. o Note: Position refers to the position in the Team lineup and not the position inside the array. Inserting a Player to position (players_currently_in_team + 1) is effectively the same as adding a Player to the end of the Team. public void removePlayer(int position) Brief: Removes a Player from the team at the indicated position in the lineup. o Parameters: position - the position the from which the Player is to be removed. o Preconditions: This Team object has been instantiated 1 3 position s players_currently_in_team. o Postconditions: The Player at the desired position in the Team has been removed. All Players that were originally in positions greater than or equal to position are moved forward one position. . E.g. If there are 5 Players in a Team, positions 1-5, and you remove the player at position 4, the Player that was at position 5 will be moved to position 4. o Throws: IllegalArgumentException - Indicates that position is not within the valid range.. o Note: Position refers to the position in the Team lineup and not the position inside the array. public player getPlayer(int position) Brief: Returns a reference to a player in the lineup at the indicated position. o Parameters: . position - the position in the lineup from which the Player is to be retrieved. o Preconditions: This Team object has been instantiated. o Returns: The Player from the given index. o Parameters: . position - the position in the lineup from which the Player is to be retrieved. o Preconditions: This Team object has been instantiated. o Returns: The Player from the given index. o Throws IllegalArgumentException - Indicates that position is not within the valid range. o Note: Position refers to the position in the Team lineup and not the position inside the array. public player getLeader (String stat) Note: If you implement this method using 'int' stat (0 or 1 indicating hits or errors), this is acceptable as well. o Brief: Return the Player with the best value in the given statistic ("hits" or "errors"). o Parameters: stat - either "hits" or "errors". o Preconditions: This Team object has been instantiated. o Returns: The Player with the best stat. o Throws: IllegalArgumentException - Indicates that indicated stat was neither "hits" nor "errors". Note: Remember that HIGHER hits are good, whereas LOWER errors are good. public void printAllPlayers() o Brief: Prints a neatly formatted table of each Player in the Team on its own line with its position number as shown in the sample output. o Preconditions: This Team object has been instantiated. o Preconditions: A neatly formatted table of each Player in the Team on its own line with its position number has been displayed to the user. o Hint: . If your toString method is implemented correctly as described below, you will simply need to call it and print the results to the user.. public Sring toString() Brief: Gets the String representation of this Team object, which is a neatly formatted table of each Player in the Team on its own line with its position number as shown in the sample output. o Returns: The String representation of this Team object. 3. Team Manager Write a fully-documented class named TeamManager which tests the methods of the Team class and allows the user to manipulate 5 Team objects by performing operations on it. public static final int MAX TEAMS = 5; 3. Team Manager Write a fully-documented class named TeamManager which tests the methods of the Team class and allows the user to manipulate 5 Team objects by performing operations on it. public static final int MAX_TEAMS = 5; public static void main(String[] args) Brief: The main method runs a menu driven application which first creates an empty Team and then prompts the user for a menu command selecting the operation. The required information is then requested from the user based on the selected operation. Following is the list of menu options and their required information: A) Add Player. . G) Get Player stats. L) Get leader in a stat. R) Remove a player. . P) Print all players. S) Size of team. T) Select team E) Team equals . U) Update stat. Q) Quit. 4. FullTeamException An Exception class which indicates a full roster. Input Format: Each menu operation is entered on its own line and should be case insensitive (i.e. 'q' and 'Q' are the same). make sure that the position, if required, . If not, print an error message and return to the menu. For the Add Player command, if the input information is valid, construct the object accordingly. Otherwise, print an error message and return to the menu. You may assume that the lengths of the input for the player names are less than 25 characters long, and that the number of hits and errors fits into an int variable. Output Format: All lists must be printed in a nice and tabular form as shown in the sample output. You may use C style formatting as shown in the following example. The example below shows two different ways of displaying the name and address at pre-specified positions 21, 26, 19, and 6 spaces wide. If the '-'flag is given, then it will be left-justified (padding will be on the right), else the region is right-justified. The 's'identifier is for strings, the 'd' identifier is for integers. Giving the additional 'O' flag pads an integer with additional zeroes in front. String name = "Doe Jane"; String address = "32 Bayview Dr."; String city = "Fishers Island, NY"; int zip - 6390; System.out.println(String.format("%-215%-265X195/606d", name, address, city, zip)); System.out.printf("%-215%-265X195%06d", name, address, city, zip); Doe Jane 32 Bayview Dr. Fishers Island, NY 26390 Doe Jane 32 Bayview Dr. Fishers Island, NY 26390 Sample Input/Output: 1/ Comment in green, input in red, output in black Welcome to TeamManager! Team 1 is currently selected. // menu Please select an option: A) Add Player. Get Player stats. Get leader in a stat. R) Remove a player. P) Print all players. Size of team. T) Select team Clone team Team equals Update stat. c) Quit. Select a menu option: A Enter the player's name: David Ortiz Enter the number of hits: 542 Enter the number of errors: 10 Enter the position: 1 Player added: David Ortiz 542 hits, 10 errors // menu not shown in the sample input/output Select a menu option: A Enter the player's name: Derek Jeter Enter the number of hits: 83 Enter the number of errors: 20 Enter the position: 1 Player added: Derek Jeter - 83 hits, 20 errors // menu not shown in the sample input/output Select a menu option: P Select team index: 1 Player# Name Hits Errors 1 2 Derek Jeter David Ortiz 83 542 20 10 // menu not shown in the sample input/output Select a menu option: A Enter the player's name: Albert Pujols Enter the number of hits: 222 Enter the number of errors: 15 Enter the position: 2 Player added: Albert Pujols 222 hits, 15 errors

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

Database Systems For Advanced Applications Dasfaa 2023 International Workshops Bdms 2023 Bdqm 2023 Gdma 2023 Bundlers 2023 Tianjin China April 17 20 2023 Proceedings Lncs 13922

Authors: Amr El Abbadi ,Gillian Dobbie ,Zhiyong Feng ,Lu Chen ,Xiaohui Tao ,Yingxia Shao ,Hongzhi Yin

1st Edition

3031354141, 978-3031354144

More Books

Students also viewed these Databases questions

Question

What is paper chromatography?

Answered: 1 week ago

Question

Explain the cost of capital.

Answered: 1 week ago

Question

Define capital structure.

Answered: 1 week ago