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.

Get Project Solution Now

Comments