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 "Recommenders/Attic/New and Noteworthy/0.2"

(teaser for chain completion)
m
Line 1: Line 1:
 
= Chain Completion Engine  =
 
= Chain Completion Engine  =
Our chain completion supports the instantiation of types. It takes the programming context and searches through out all members and member's member until the specific type is found. The chain from the programming context to the search result are stored as a proposal. All proposed chains can be chosen to instantiate the type.
+
How many times did you ask yourself "How do I get an instance of X"? How much time did you spent in shimming from one method call to another to find a path that returns you an instance of the type you are looking for?
 +
 
 +
Code Recommenders' chain completion is supporting you exactly on this task. To find all potential paths that result in an instance of the requested type, it takes the current context code completion was triggered in and searches all members and member's member until a path to the requested type is found (or a time out occurred :) and then presents the paths found by the tool to the user as ready-to-use code snippets. Look at the screenshots below for some examples to see chain completion in action:
 +
 
 
== Completion on ''this''  ==
 
== Completion on ''this''  ==
  

Revision as of 09:44, 25 February 2011

Chain Completion Engine

How many times did you ask yourself "How do I get an instance of X"? How much time did you spent in shimming from one method call to another to find a path that returns you an instance of the type you are looking for?

Code Recommenders' chain completion is supporting you exactly on this task. To find all potential paths that result in an instance of the requested type, it takes the current context code completion was triggered in and searches all members and member's member until a path to the requested type is found (or a time out occurred :) and then presents the paths found by the tool to the user as ready-to-use code snippets. Look at the screenshots below for some examples to see chain completion in action:

Completion on this

Recommenders-chain-completion-on-IStatusLineManager.png

Completion from static types

Recommenders-chain-completion-on-IWorkbenchHelpSystem.png

Completion on method returns

Recommenders-chain-completion-on-method-return.png

Completion with type cast

Recommenders-chain-completion-with-cast.png

Templates Completion Engine

Our templates completion engine provides dynamically created source code snippets on completion requests. The templates we propose are obtained from frequent patterns found in framework usage, i.e. the user is instantly served with the most common practices. For this not only the object type is considered, but also what has already been called on the variable - our templates are context-sensitive! You can see how they adopt to different occasion in the following screenshots. With this the new templates completion engine provides dynamic shortcuts for frequent code blocks and is also able to guide framework novices with relevant examples.

Completion for Local Declaration

Recommenders-templates-completion-on-button-declaration.png

Dynamic Pattern Completion

Recommenders-templates-completion-on-button-with-observed-calls.png

Back to the top