Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
こんにちは、このコードを使用してデータを取得しています
Set<Account> selection =new HashSet<Account>table.getSelectionModel().getSelectedItem();
しかし、これを出力として取得しています
passbookprintingdemo.AccountPage$Account@1eb5170
このクラス名の代わりにデータを取得する方法を教えてもらえますか?
前もって感謝します
table.getSelectionModel().getSelectedItem().YourGetterFunctionName and you will get your data :)