0

我尝试使用 Vogella 教程中提到的简单 Nattable,但出现以下错误:

java.lang.NoClassDefFoundError: org/eclipse/nebula/widgets/nattable/data/IColumnAccessor
    at com.mioplus.mioredapp.view.ContentFactory.createContent(ContentFactory.java:14)
    at com.mioplus.mioredapp.dialogs.TreeDialog$1.handleEvent(TreeDialog.java:72)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053)
    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4066)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3657)
    at org.eclipse.jface.window.Window.runEventLoop(Window.java:825)
    at org.eclipse.jface.window.Window.open(Window.java:801)
    at com.mioplus.mioredapp.dialogs.LoginDialog$1.widgetSelected(LoginDialog.java:97)
    at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:234)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053)

我正在开发一个插件应用程序并使用 Luna 4.4.2,任何可以帮助我的人,我都添加了所有 jar 来构建路径,甚至类是可见的。

4

1 回答 1

1

看起来像一个启动问题。在您打开 LoginDialog 时,nattable.core 包尚未加载。因此,要么缺少依赖项,要么您的产品配置未指定对 nattable.core 的依赖项。

于 2016-12-09T09:04:41.520 回答