public static void populateJList(JList list) {
ArrayList<String> contents= DataAccess.getContents();
DefaultListModel listModel = new DefaultListModel();
for (String string : contents) {
listModel.addElement(string);
}
preset.setModel(listModel);
}
I have this method that populates my JList, is there a way that I can add toolTipText of every item in the JList?