reservations; // save and manage multiple trip.Reservation objects
- public Person organizer; // person responsible for the trip
- public String theme; // theme of the trip
-
- // add reservation object to the list of trip.Reservation objects (check for duplicates)
- // and return the number of reservation
- public int addReservation(Reservation reservation) {
- return 0;
- }
-
- // find matching reservation in Vector list and update it with parameter's value
- public void updateReservation(Reservation reservation) {
- }
-
- // find trip.Reservation in Vector that matches conf number and delete from Vector
- public void deleteReservation(String confirmationNumber) {
- }
-
- // save trip.Trip information to the passed in file
- public void saveToFile(String fileName) {
- }
-
- // calculate and return the trip.Trip's price
- public float calculatePrice() {
- return 0.0f;
- }
-
- }
\ No newline at end of file
diff --git a/src/edu/trip/TripOrganizer.java b/src/edu/trip/TripOrganizer.java
deleted file mode 100644
index 54c542b..0000000
--- a/src/edu/trip/TripOrganizer.java
+++ /dev/null
@@ -1,35 +0,0 @@
-package edu.trip;
-
-public class TripOrganizer {
-
- public Trip trip; // store and manage a single trip.Trip object at a time
-
- // Add reservation to the currently loaded trip.Trip
- public void addReservation(Reservation reservation) {
- }
-
- // save current trip.Trip data to a file
- public void saveToFile(String filename) {
- }
-
- // load a trip.Trip object from a file
- public void openFromFile(String filename) {
- }
-
- // update the currently loaded trip.Trip's reservation (one that matches the parameter)
- public void editReservation(Reservation reservation) {
- }
-
- // delete reservation matching conf number from currently loaded trip
- public void deleteReservation(String confirmationNumber) {
- }
-
- // delete the currently loaded trip.Trip and its file (value smust match)
- public void deleteTrip(String fileName) {
- }
-
- // load new trip.Trip from the passed in object (close the currently loaded trip.Trip)
- public void createNewTrip(Trip trip) {
- }
-
-}
\ No newline at end of file
diff --git a/src/edu/trip/package-info.java b/src/edu/trip/package-info.java
deleted file mode 100644
index 7970305..0000000
--- a/src/edu/trip/package-info.java
+++ /dev/null
@@ -1,10 +0,0 @@
-/**
- * This package contains utility classes for Trip Reservation operations.
- *
- * It includes classes for TripOrganize and Trip processing of Reservations.
- *
- * @since 1.0
- * @author theAuthor
- * @version 1.1
- */
-package edu.trip;
diff --git a/src/module-info.java b/src/module-info.java
deleted file mode 100644
index 964f404..0000000
--- a/src/module-info.java
+++ /dev/null
@@ -1,4 +0,0 @@
-module edu.trip {
- exports edu.trip;
-}
-