The constructor NotePanel(itemClass) refers to the missing type itemClassI have a class NotePanel<T extends AbstractNoteItem> extends JPanel, and a method in a separate class that returns a NotePanel that should be created during the method:
public class NoteList extends JList {
...
public class NoteListModel extends AbstractListModel {
...
public NotePanel getPanelFromIndex(int index) {
if (!indexExists(index)) {
// FYI, indexExists(int) works fine
return null;
} else {
AbstractNoteItem item = getElementAt(index);
// FYI, getElementAt(int) works fine
assert (item != null);
Class<?> itemClass = item.getClass();
return (new NotePanel<itemClass> (item));
}
}
}
}
There's an error on the line that returns a new NotePanel: "The constructor NotePanel(itemClass) refers to the missing type itemClass." Could somebody tell me how to make this work?
If this is not enough code, I would be happy to provide more. All my imports are in order (thank you, Organize Imports!). I don't see any glaringly obvious problems, but I'm also new to using generics.
Thanks in advance!
NotePanelneeds to be generic? – Stuart Cook Aug 27 '11 at 5:41NotePanelrequires a type that extendsAbstractNoteItem, becauseAbstractNoteItemcontains a methodgetTypeName()that returns a human-readable String, that is used as part of aJLabeltext. Is there a way I could do this with just passing aClass<? extends AbstractNoteItem>or something similar? – WChargin Aug 27 '11 at 18:28