Overview: National railway company wants to make a simple application to keep track of trips and passengers. In this TMA, it is required to help the company implement the required application. Requirements: After a quick meeting with the employee in charge, you got the following information: . It is required to store the whole data in one collection • Each trip has a number, a driver and a specific date. In addition, passengers could be added or removed within a given limit for the maximum number of passengers who could be in the same trip. Furthermore, there are other attributes (add at least 3 attributes from your choice). Of course, trip number is unique within the same date. • Each driver has a unique ID, a name and other attributes (add at least 2 attributes from your choice). • Each passenger has a unique Civil ID (National ID), a name and other attributes (add at least 2 attributes from your choice but one of them should be common with drivers).

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

pleas help..

 

Overview:
National railway company wants to make a simple application to keep track of trips and
passengers.
In this TMA, it is required to help the company implement the required application.
Requirements:
After a quick meeting with the employee in charge, you got the following information:
• It is required to store the whole data in one collection
•
Each trip has a number, a driver and a specific date. In addition, passengers could be added
or removed within a given limit for the maximum number of passengers who could be in the
same trip. Furthermore, there are other attributes (add at least 3 attributes from your
choice). Of course, trip number is unique within the same date.
Each driver has a unique ID, a name and other attributes (add at least 2 attributes from your
choice).
Each passenger has a unique Civil ID (National ID), a name and other attributes (add at least
2 attributes from your choice but one of them should be common with drivers).
Moreover, you have been informed that the following operations happen frequently:
• Offering a new trip
•
Adding a passenger to a specific trip
Removing a passenger from a specific trip
Retrieving the average number of passengers per trip of a specified date
Displaying all available trips in a format similar to the following:
date1: tripNo1 tripNo2 tripNo3...
date2: tripNo1 tripNo2 tripNo3...
where dates and trips are sorted in ascending order
• Saving all the data into a text file
Analysis:
Q1: There are common attributes and methods between passengers and drivers. What is the
best choice for designing and writing the codes of these two classes? Explain your answer.
Q2: Draw a simple dass diagram showing only relationships between the classes.
Implementation:
After analysing the given requirements, implement the required application:
• with Object Oriented Programming style
• following the rules of good programming style (eg. adding comments, etc.)
using only the material covered in M251 (and its prerequisites)
Transcribed Image Text:Overview: National railway company wants to make a simple application to keep track of trips and passengers. In this TMA, it is required to help the company implement the required application. Requirements: After a quick meeting with the employee in charge, you got the following information: • It is required to store the whole data in one collection • Each trip has a number, a driver and a specific date. In addition, passengers could be added or removed within a given limit for the maximum number of passengers who could be in the same trip. Furthermore, there are other attributes (add at least 3 attributes from your choice). Of course, trip number is unique within the same date. Each driver has a unique ID, a name and other attributes (add at least 2 attributes from your choice). Each passenger has a unique Civil ID (National ID), a name and other attributes (add at least 2 attributes from your choice but one of them should be common with drivers). Moreover, you have been informed that the following operations happen frequently: • Offering a new trip • Adding a passenger to a specific trip Removing a passenger from a specific trip Retrieving the average number of passengers per trip of a specified date Displaying all available trips in a format similar to the following: date1: tripNo1 tripNo2 tripNo3... date2: tripNo1 tripNo2 tripNo3... where dates and trips are sorted in ascending order • Saving all the data into a text file Analysis: Q1: There are common attributes and methods between passengers and drivers. What is the best choice for designing and writing the codes of these two classes? Explain your answer. Q2: Draw a simple dass diagram showing only relationships between the classes. Implementation: After analysing the given requirements, implement the required application: • with Object Oriented Programming style • following the rules of good programming style (eg. adding comments, etc.) using only the material covered in M251 (and its prerequisites)
Hints:
• For each class, it is required to implement constructors, setters, getters, toString() method,
and any other necessary method
•
If the user tries to do an operation that could violate the state of objects, the operation
should be ignored and the application should display an error message (e.g. adding a
passenger to the same trip twice, etc.)
Checking equality of any 2 objects should be done via the equals() method
There is a class that will do the main job of as follows:
It has one collection to store the whole data (all trips)
It has static methods, one for each operation happens frequently
For each adding or removing operation, a message should be displayed to the user to
explain the status of the operation (i.e. if it was successful or not)
•
•
o
o
o
Testing:
After implementing the required classes, design and implement a testing class to test them as
follows:
• Create at least 7 trips in at least 3 different dates and add them to the collection that stores
the whole data then add and remove some passengers from them.
• Try to violate the state of the objects and show that your code prevents all violations.
Show that the other operations that happen frequently are working fine
At the end, the whole data should be saved into a text file and this file should be saved
automatically inside the folder contains your Java project
Transcribed Image Text:Hints: • For each class, it is required to implement constructors, setters, getters, toString() method, and any other necessary method • If the user tries to do an operation that could violate the state of objects, the operation should be ignored and the application should display an error message (e.g. adding a passenger to the same trip twice, etc.) Checking equality of any 2 objects should be done via the equals() method There is a class that will do the main job of as follows: It has one collection to store the whole data (all trips) It has static methods, one for each operation happens frequently For each adding or removing operation, a message should be displayed to the user to explain the status of the operation (i.e. if it was successful or not) • • o o o Testing: After implementing the required classes, design and implement a testing class to test them as follows: • Create at least 7 trips in at least 3 different dates and add them to the collection that stores the whole data then add and remove some passengers from them. • Try to violate the state of the objects and show that your code prevents all violations. Show that the other operations that happen frequently are working fine At the end, the whole data should be saved into a text file and this file should be saved automatically inside the folder contains your Java project
Expert Solution
steps

Step by step

Solved in 2 steps with 3 images

Blurred answer
Knowledge Booster
Linux
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education