I'm currently working on refactoring some old code and I found a snippet where I don't understand how to properly use Generics for the Swing Application Framework class TaskListener.Adapter.
This is the relevant code snippet:
public void executeTask(Task<?, ?> task, boolean handleException) {
task.addTaskListener(new TaskListener.Adapter() { /* <-- Two warnings here */
@Override
public void failed(TaskEvent event) { /* ... */ }
});
getContext().getTaskService().execute(task);
}
1. First I want to get rid of the warnings. "unchecked conversion" and "found raw type". I tried to change the code to new TaskListener.Adapter<Object, Object>, but then I get the error "cannot be applied to given types". Is a raw type the only thing I can use here because of the (Task<?, ?> declaration?
2. The declaration of the failed method in org.jdesktop.application.TaskListener.Adapter is public void failed(TaskEvent<Throwable> event), but if I try to change my code to this:
@Override
public void failed(TaskEvent<Throwable> event) { /* ... */ }
I get "method does not override a method from a supertype". Again I have to go with the raw TaskEvent. Why is that?
Thank you for your help.
EDIT: Javadoc for TaskListener on Jarvana.
TaskListener.Adapter, specifically its generic parameters? – Péter Török Aug 11 '11 at 8:13