0
Q:

how to add elements to Jlist

DefaultListModel<String> model = new DefaultListModel<>();
JList<String> list = new JList<>( model );

for ( int i = 0; i < customers.length; i++ ){
  model.addElement( customers[i].getName() );
}
0

Tags

New to Communities?

Join the community