Dmitry Aleksandrov
Dmitry Aleksandrov

Reputation: 710

Eclipse outline plugin ContentOutlinePage not found

I am making an eclipse plugin and I want to make the Outline view. I want to extend ContentOutlinePage. But my eclipse cannot resolve it.

Should I add something to plugin.xml to make it find the class?

Upvotes: 0

Views: 248

Answers (2)

Dmitry Aleksandrov
Dmitry Aleksandrov

Reputation: 710

Add org.eclipse.ui.views to the Dependencies tab.

Upvotes: 1

Jan Arciuchiewicz
Jan Arciuchiewicz

Reputation: 791

You will need to define dependencies properly for your plug-in. In your case you would probably need at least: org.eclipse.ui.editors, org.eclipse.ui.ide. Please add them on to the manifest (on the Dependencies tab of plug-in/manifest editor).

Upvotes: 2

Related Questions