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

Integrate GMF runtime with Mylyn task focused UI

Revision as of 04:22, 2 September 2010 by Lgylym.gmail.com (Talk | contribs)

This project is part of Google Summer of Code 2010. Source code can be found here. First edited by Yongming Luo.

Abstract

Mylyn is a task management framework. By using it, the workspace can have different "snapshots" for different tasks. When one task is selected, only the related objects (files, opened windows, etc.) are shown in the workspace. That is so called "task focused UI". On the other hand, the GMF runtime provides a common graphical notation model for every Eclipse Modeler. By combining the two techniques together, a mylyn bridge can be developed, showing the graphical elements in editor depending on the relevance of the current task. This project can also be an example to show how to integrate GMF techniques to a real project.

Main Structure

The generated GMF editor used in this project is EcoreTools Editor. The development procedure is divided into two parts:

  • A mylyn bridge that fits for the generated GMF editor
  • A context listener that listens to the context and changes the representation of the diagrams in the editor

Implementation Details

Mylyn Bridge

Three classes need to be extended when implementing a mylyn bridge: AbstractUserInteractionMonitor, AbstractContextStructureBridge and AbstractContextUiBridge. It's a good idea to start with the AbstractUserInteractionMonitor, for the monitor does not need any other classes to support it, and you can directly see the result from the current context without implementing the other classes. The next step is to implement the StructureBridge and UIBridge. The main idea of the bridge is to create a mapping between objects and Strings(handles). When the mapping is done, Mylyn can deal with the Strings without worrying about the real objects. During implementation, I found it's convenient to learn from the existing implementations (e.g. Ant Bridge). For EcoreTools Diagram Editor, a lot of files are generated within the package, which is a little bit confused. I found EcoreNavigatorContentProvider very useful to take a look at.

Context Listener

Context Listener listens to the changes of the current context and do actions according to it. This blog post I wrote includes an example of implementing a mylyn context listener and showing the context by zest framework. The idea is to extend the AbstractContextListener class, while all the events are passed through contextChanged() method. In my implementation, the context listener is added to the workspace when the plug-in is started (EcoreToolsUIBridgePlugin.start()), and removed when the plug-in is stopped. Whenever there is an event, the editor will be refreshed and all the diagrams in the editor will change their representations if it's needed (EcoreToolsUtil.refreshEditor()).

UI

GMF Mylyn.PNG

Future Work

  • A patch for GMF framework which can generate a mylyn bridge for the editor automatically.

Back to the top