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 "Mylyn/Porting Guide"

(Porting from 2.0 to 3.0)
(Tasks API)
Line 11: Line 11:
  
 
== Tasks API ==  
 
== Tasks API ==  
 +
 +
* <code>AbstractRepositoryConnector</code>
 +
** <code>isRepositoryConfigurationStale(TaskRepository)</code> has been added
  
 
* <code>AbstractRenderingEngine</code> has been added for converting Wiki syntax to HTML
 
* <code>AbstractRenderingEngine</code> has been added for converting Wiki syntax to HTML

Revision as of 13:40, 13 July 2007

This document will have Mylar 2.0 specific API changes added to it as we make them. If interested in keeping up with these changes we suggest setting a watch for this page. Note that changes involving classes moving packages are not listed, use Organize Imports to resolve.

Porting from 1.0 to 2.0

See the Mylyn Porting Guide 2.0

Porting from 2.0 to 3.0

There is currently no need to port Mylyn from the 2.0 APIs since current Mylyn releases are backwards compatible. Throughout the 2.x release cycle we will be using this wiki to gather changes and suggestions for improving the APIs for 3.0.

Tasks API

  • AbstractRepositoryConnector
    • isRepositoryConfigurationStale(TaskRepository) has been added
  • AbstractRenderingEngine has been added for converting Wiki syntax to HTML
  • AbstractRepositoryTaskEditor has been extended to provide HTML preview capabilities for repositories that support Wiki syntax in ticket descriptions and comments
    • addSelectableControl() has been added
    • createReplyHyperlink() is now protected (was private)
    • DescriptionListener is now protected (was private)
    • getParentEditor() has been added
    • getRenderingEngine() has been added
    • removeSelectableControl() has been added

Pending Changes for Mylyn 3.0

  • Rename IMylarMonitorLifecycleListener to IMonitorLifecycleListener

Back to the top