Sadık
Sadık

Reputation: 4419

Add library to Eclipse plugin

In my Eclipse Plugin I have a table that shows Integer and String values. To edit the String values I'm using a TextCellEditor which is in the package org.eclipse.jface.viewers.

I have found a NumberCellEditor which I want to try. It is in the package org.eclipse.ve.internal.propertysheet.NumberCellEditor.

I cannot see this package in eclipse it is not listed in the plugin.xml file under Dependencies. It's not in the list that shows up when clicking the "Add"-Button either.

How can I use this class?

Upvotes: 1

Views: 41

Answers (1)

greg-449
greg-449

Reputation: 111217

org.eclipse.ve appears to be the old Eclipse Visual Editor plugin which is no longer available.

Additionally classes in a package with internal in the name are off-limits (see Eclipse API Rules of Engagement). They may be changed or removed at any time.

Upvotes: 1

Related Questions