()
| 91 | public static int showCardOptionDialog(final CardView card, final String message, final String title, final FSkinProp icon, final List<String> options, final int defaultOption) { |
| 92 | return new WaitCallback<Integer>() { |
| 93 | @Override |
| 94 | public void run() { |
| 95 | FOptionPane.showCardOptionDialog(card, message, title, icon == null ? null : FSkin.getImages().get(icon), options, defaultOption, this); |
| 96 | } |
| 97 | }.invokeAndWait(); |
| 98 | } |
| 99 | public static void showCardOptionDialog(final CardView card, String message, String title, FImage icon, final List<String> options, final int defaultOption, final Consumer<Integer> callback) { |
nothing calls this directly
no test coverage detected