Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Eclipse4/UI/Event/Migration"

(Action Required)
Line 42: Line 42:
 
If you where using a call similar to <tt>UIEvents.buildTopic(UIEvents.UILabel.TOPIC, UIEvents.UILabel.LABEL)</tt> please replace this with direct use of the constant <tt>UIEvents.UILabel.TOPIC_LABEL</tt>
 
If you where using a call similar to <tt>UIEvents.buildTopic(UIEvents.UILabel.TOPIC, UIEvents.UILabel.LABEL)</tt> please replace this with direct use of the constant <tt>UIEvents.UILabel.TOPIC_LABEL</tt>
  
Subscribing to a particular tag change of a particular attribute through the use of &lt;tt&gt;UIEvents.buildTopic(UIEvents.UILabel.TOPIC, UIEvents.UILabel.LABEL, UIEvents.EventTypes.SET)</tt> is no longer supported. In practice this pattern was never used. Typical event handlers are interested in all changes to a given attribute. Some particular change to some particular attribute was too fine grained a filtering for general use and the over all gains of the new strategy where deemed to outweigh the usefulness of this unused pattern.  
+
Subscribing to a particular tag change of a particular attribute through the use of <tt>UIEvents.buildTopic(UIEvents.UILabel.TOPIC, UIEvents.UILabel.LABEL, UIEvents.EventTypes.SET)</tt> is no longer supported. In practice this pattern was never used. Typical event handlers are interested in all changes to a given attribute. Some particular change to some particular attribute was too fine grained a filtering for general use and the over all gains of the new strategy where deemed to outweigh the usefulness of this unused pattern.  
  
 
For testing attribute names within event handler implementations you should continue to use the attribute constants such as <tt>UIEvents.UILabel.LABEL</tt> as these are the values inserted into the UI Events by UIEventPublisher.
 
For testing attribute names within event handler implementations you should continue to use the attribute constants such as <tt>UIEvents.UILabel.LABEL</tt> as these are the values inserted into the UI Events by UIEventPublisher.

Revision as of 17:32, 2 December 2011

Take a look at Eclipse4/RCP/Event Model for a description on the Eclipse UI Event model in general.

Rational for Change

Up until the end of M4, the topic strings used to subscribe to UI events were constructed at run time using the UIEvents.buildTopic() methods like this:

eventBroker.subscribe(UIEvents.buildTopic(UIEvents.UILabel.TOPIC, UIEvents.UILabel.LABEL), handler);

This has the following disadvantages:

  • Long complicated looking code to do simple subscribes
  • Prevents us from using the cleaner @UIEventTopic() dependency injection technique for subscribing to ui events
  • Creating more run time garbage through string concatenation
  • Possibly confusing clients by making them think our eventing model is more complicated than it actually is

Change

New UI Event TOPIC_* constants with fully qualified values where created for making event subscriptions.

In essence the string returned by the old UIEvents.buildTopic(UIEvents.UILabel.TOPIC, UIEvents.UILabel.LABEL) is equal to UIEvents.UILabel.TOPIC_LABEL

So a subscribe now looks like:

eventBroker.subscribe(UIEvents.UILabel.TOPIC_LABEL)

or better yet, you can use dependency injection

@Inject @Optional
private void closeHandler(@UIEventTopic(UIEvents.UILabel.TOPIC_LABEL) Event event) {}

Action Required

The three UIEvents.buildTopic() methods and all the UIEvents TOPIC constants have been deprecated in M4 and will be deleted before M5 is released.

If you where using a call similar to UIEvents.buildTopic(UIEvents.UILabel.TOPIC) please replace this with direct use of the constant UIEvents.UILabel.TOPIC_ALL

If you where using a call similar to UIEvents.buildTopic(UIEvents.UILabel.TOPIC, UIEvents.UILabel.LABEL) please replace this with direct use of the constant UIEvents.UILabel.TOPIC_LABEL

Subscribing to a particular tag change of a particular attribute through the use of UIEvents.buildTopic(UIEvents.UILabel.TOPIC, UIEvents.UILabel.LABEL, UIEvents.EventTypes.SET) is no longer supported. In practice this pattern was never used. Typical event handlers are interested in all changes to a given attribute. Some particular change to some particular attribute was too fine grained a filtering for general use and the over all gains of the new strategy where deemed to outweigh the usefulness of this unused pattern.

For testing attribute names within event handler implementations you should continue to use the attribute constants such as UIEvents.UILabel.LABEL as these are the values inserted into the UI Events by UIEventPublisher.

Back to the top