abhaga22 / CS2340

1 stars 0 forks source link

M3: MVC Set Up #3

Open abhaga22 opened 7 years ago

abhaga22 commented 7 years ago

Running the App: You should go to Assignment 3, and download the M3.zip file. Extract the file into your IDE project directory. If using Intelli-J, I have included my idea files so you can import the project. If using a different IDE, or coding from the command line, simply import the code files.

If you examine the project view, you will see there are packages for model, view, and controller.

If you run the project, it should build and execute normally. You should be able to add a student and see the list update.

New Features Your customer likes the application so far, but they want one minor change. They want to include the student's class standing (freshman, sophomore, etc.) This will require a change in each component (Model, View and Controller).

Normally when maintaining code and making feature enhancements and bug fixes, you can start wherever you like in the stack. I usually like to start with the Model.