官术网_书友最值得收藏!

Time for action – propagating selection

When the user selects an item in a viewer component, any registered selection listeners will be notified. In order to forward changes to the E4 selection service, a listener needs to be created to forward the selection to the ESelectionService.

  1. Add the required packages to the bundle's package imports, by right-clicking on the com.packtpub.e4.clock.ui project and navigating to Plug-in Tools | Open Manifest to open the bundle's manifest. On the Dependencies tab, click on Add under the Imported Packages section and enter org.eclipse.e4.ui.workbench.modeling as well as org.eclipse.e4.core.di.annotations.
  2. In order to forward selection changes to the E4 selection service, it must be injected into the view. Add a field ESelectionService selectionService annotated with @Inject and @Optional. When the part is created, the field will be filled with a selection service instance or null as appropriate:
    @Inject
    @Optional
    private ESelectionService selectionService;
  3. The selection changed event needs to trigger finding the selected object, then forwarding that on to the selection service. Add an ISelectionChangeListener to the treeViewer with the following:
    treeViewer.addSelectionChangedListener(event -> {
      // forward selection
      Object selection = ((IStructuredSelection)event.getSelection()).
       getFirstElement();
      if (selection != null && selectionService != null) {
        selectionService.setSelection(selection);
      }
    });
  4. Test the application by putting a breakpoint in the stSelection method, and launch the Eclipse application in Debug mode. Once it is running, open the Time Zone Tree View and select a time zone, after which the debugger should be presented. Verify that the selected time zone and the selectionService have been injected correctly.

What just happened?

To receive selection events from the tree viewer, a listener must be registered to pick up changes. In order to forward this to the E4 selection service, it must be obtained using injection. By marking the field with @Inject, the selection service will be automatically injected when the part is created.

By marking the field as @Optional, if the selection service is not available, then a null value will be injected instead. If the field is not marked as @Optional and the service is not available, the part would fail to be created. Since the selection updates aren't a core part of the view's functionality, it is better to fail safely and work with reduced functionality rather than fail completely.

Finally, when the selection change event occurs, the selected object is extracted from the viewer and then forwarded onto the selection service, but only if both the selection and the selection service are not null.

Tip

Although the selection mechanism in Eclipse 3.x uses ISelection interfaces (almost always IStructuredSelection), the E4 selection service permits objects to be set directly. This also allows the type of the object to be selectively filtered when received. In Eclipse 3.x, the viewer would set the selectionProvider on the viewPart, which would handle the selection changes automatically.

主站蜘蛛池模板: 紫金县| 馆陶县| 双城市| 托克逊县| 乌兰浩特市| 库车县| 太仆寺旗| 开封市| 夹江县| 昭通市| 庆阳市| 绥芬河市| 五莲县| 昭平县| 会同县| 铅山县| 安义县| 罗山县| 新安县| 锦州市| 克拉玛依市| 尼木县| 阳谷县| 怀来县| 金沙县| 响水县| 同心县| 保康县| 彩票| 名山县| 涡阳县| 张掖市| 会宁县| 涟源市| 忻州市| 威海市| 彭山县| 江源县| 柘荣县| 鹤山市| 剑川县|