I have a student object with the following attributes:
private String forename;
private String surname;
private String id;
private char gender;
private String street;
private String locality;
private String postcode;
private String email;
I have several of these objects stored in an ArrayList and wanted to know the best way to get them into a JTable with columns named after the attributes above.