JList and JTable Project in Java with full source code

JList:

Create a JList, showing information about temperature as:
k degrees C = f degrees F
where k varies from -70 to +60.
Note: Do not use arrays or collections (including DefaultListModel that underneath uses Vector class).

Create a table (JTable), showing books:

The book is:
  1. author's
  2. title
  3. price
  4. cover (picture)
Information about books should be loaded from a file. (and pictures from graphics files from the same directory)

You should provide:

  1. the ability to edit the prices in the table (in the cell)
  2. add and remove rows to / from the table from the GUI.

CONTACT DETAILS

For any other questions or other tasks please feel free to contact me
via email: mhassnainjamil@gmail.com
via WhatsApp: +92-324-7042178
via skype: hassnainjamil1

Comments

Popular posts from this blog

[SOLVED] Tape for a Turing Machine using Doubly-linked List in Java with full source code

[SOLVED] Branch Coverage, Statement Coverage and Path Coverage | Java Unit Testing

[SOLVED] Buggy Search And Sort Buy Reporting with Java source code