以下のコードは、選択した日付に応じて利用可能な時間をコンボ ボックスに入力するためのものです。
ただし、何らかの理由で、コンボ ボックスにデータ例のメモリ アドレスが格納されています。
Restaurant.Time@1a28362
Restaurant.Time@5fcf29
...
私はそれが適切な時期に来ていることを知っています。しかし、実際のアイテムを実際に印刷するにはどうすればよいですか?
TimeList times = dbConnector.selectTimes(lblDay.getText());//lblDay stores the date from the jCalendar button
cmbNewResTimes.removeAllItems();
for (int pos1 = 0; pos1 < times.size(); pos1++) {
cmbNewResTimes.addItem(times.getTimeAt(pos1).toString());
}