我正在使用此代码创建一个JList
:
JList list = new JList<String>(new String[] {"Hello", "World"});
该程序也可以在 Eclipse Juno 上编译和运行,但是当我尝试使用 WindowBuilder 打开它时,会出现以下错误:
new JList<String>(new String[] {"Hello", "World"}) is not valid source for component creation, it references not existing constructor.
现在,由于我使用的是 Java 7(JDK 和 JRE),这应该不是错误。
注意:程序的其余部分是正确的。