positron
positron

Reputation: 3693

Deprecation of org.eclipse.ui.actionSets

As per JavaDoc. So does it mean that developers need to switch to new extension point or risk their software not working in the future? When will deprecation happen?

Upvotes: 1

Views: 324

Answers (1)

greg-449
greg-449

Reputation: 111216

A large amount of core Eclipse code still makes extensive use of action sets so although it is deprecated it is unlikely that this extension point will ever be removed.

Nevertheless you should plan to use the org.eclipse.ui.menus, org.eclipse.ui.commands, org.eclipse.ui.bindings and org.eclipse.ui.handlers instead whenever possible.

Upvotes: 3

Related Questions