将库添加到 Eclipse 插件
Add library to Eclipse plugin
在我的 Eclipse 插件中,我有一个显示整数和字符串值的 table。要编辑字符串值,我正在使用包 org.eclipse.jface.viewers
.
中的 TextCellEditor
我找到了 NumberCellEditor
我想试试。它在包 org.eclipse.ve.internal.propertysheet.NumberCellEditor
.
中
我在 eclipse 中看不到这个包,它没有列在 Dependencies
下的 plugin.xml 文件中。它也不在单击 "Add"-按钮时显示的列表中。
我该如何使用这个 class?
org.eclipse.ve
似乎是不再可用的旧 Eclipse Visual Editor 插件。
另外 类 在名称中带有 internal
的包中是 off-limits(参见 Eclipse API Rules of Engagement)。它们可能随时更改或删除。
在我的 Eclipse 插件中,我有一个显示整数和字符串值的 table。要编辑字符串值,我正在使用包 org.eclipse.jface.viewers
.
TextCellEditor
我找到了 NumberCellEditor
我想试试。它在包 org.eclipse.ve.internal.propertysheet.NumberCellEditor
.
我在 eclipse 中看不到这个包,它没有列在 Dependencies
下的 plugin.xml 文件中。它也不在单击 "Add"-按钮时显示的列表中。
我该如何使用这个 class?
org.eclipse.ve
似乎是不再可用的旧 Eclipse Visual Editor 插件。
另外 类 在名称中带有 internal
的包中是 off-limits(参见 Eclipse API Rules of Engagement)。它们可能随时更改或删除。