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 "Tip of the Day"

(Extending IDE Tips)
(One intermediate revision by the same user not shown)
Line 4: Line 4:
  
 
[[file:tips_main.png|400px]]
 
[[file:tips_main.png|400px]]
 +
  
 
TipProviders are selected based on their importance in the current context. For example, if the Java perspective is open, you are likely to get Java tips. If the PDE perspective is open, you are likely to get PDE tips.<br/><br/>
 
TipProviders are selected based on their importance in the current context. For example, if the Java perspective is open, you are likely to get Java tips. If the PDE perspective is open, you are likely to get PDE tips.<br/><br/>
Line 14: Line 15:
 
==Extending IDE Tips==
 
==Extending IDE Tips==
 
Extenders are able to provide a TipProvider class that can serve Tip objects. Each Tip can provide a link to a website OR a HTML description and an Image URL.
 
Extenders are able to provide a TipProvider class that can serve Tip objects. Each Tip can provide a link to a website OR a HTML description and an Image URL.
 +
 +
* [[Tip of the Day/Extending|More information here]]
  
 
==Wiki Tips==
 
==Wiki Tips==

Revision as of 12:19, 8 January 2018

The Eclipse Tip of the Day framework enables users to see Eclipse Tips during startup and enable extenders to provide tips for their specific bundles.

The TOTD UI looks like this:

Tips main.png


TipProviders are selected based on their importance in the current context. For example, if the Java perspective is open, you are likely to get Java tips. If the PDE perspective is open, you are likely to get PDE tips.

Installing

The framework can be installed with this link

repository

Extending IDE Tips

Extenders are able to provide a TipProvider class that can serve Tip objects. Each Tip can provide a link to a website OR a HTML description and an Image URL.

Wiki Tips

Tips can be retrieved from the Eclipse Wiki. The TipProvider may read tip URLs from a page and create Tip objects from a link. Examples in the framework provide tips from the following page:

Tip of the Day/Eclipse Tips

Twitter Tips

Tips can be retrieved from Twitter using the embedded link.

Back to the top