• Stars
    star
    2
  • Language
    Java
  • Created about 7 years ago
  • Updated over 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Overview For this assignment, you are required to develop a library application to store items of your choice for example, movies, books, CDs, films, football players, actors, etc. There should be at least two different types of items (e.g. Books and Films). Each item in the library must contain at least four properties. For example, a book might include Title, ISBN, Author, description and genre. Your application must provide the following basic functionality:  Add items to the library  Remove items from the library  Edit any property of an item in the library  Search for items in the library. This must allow the user to search by at least two of the properties of the item you have defined. For example, you should be able to search for books by title or author.  Sort items in the library by any of the items’ properties. When the application first loads, the library should be loaded from a text file. At least two test files must be provided as part of the final submission. When items are changed (Added, Removed or Edited) the text file should be updated to reflect the changes made. Technical Specification In your final solution, you must include the following technical elements:  A custom class to represent items in your library.  There should be at least 2 sub-classes of this class representing different types of items.  An appropriate container to store the items (e.g. ArrayList )  Use of at least one built in algorithm (e.g. search or sort).  A well designed and intuitive user interface  You should use a Library class to store all of the items and provide functionality to interact with these items. In addition, marks will be awarded for students who go beyond the basic specification outlined above. Students are free to implement whatever enhancements they wish. OOP CA2 – Pair Project 15% Marking Scheme  Basic Functionality: - 40%  Code Quality: - 20% (Structure, Maintainability, Efficiency)  Usability of final application: 10%  Additional Features/Wow factor: - 30%