Reputation: 3693
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
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