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 "FAQ What is LTK?"

 
m
Line 1: Line 1:
''
 
 
 
 
 
 
 
At the EclipseCon conference in 2004, a great deal of interest sparked the idea
 
At the EclipseCon conference in 2004, a great deal of interest sparked the idea
 
of adding more generic language IDE infrastructure to Eclipse. Many people
 
of adding more generic language IDE infrastructure to Eclipse. Many people
Line 13: Line 7:
 
different language. Clearly, this is not very efficient and results in
 
different language. Clearly, this is not very efficient and results in
 
an ongoing effort to catch up to JDT as it continues to add new features.
 
an ongoing effort to catch up to JDT as it continues to add new features.
 
  
 
Eclipse 3.0 includes a first attempt at “bubbling up” some of
 
Eclipse 3.0 includes a first attempt at “bubbling up” some of
Line 33: Line 26:
 
a refactoring after it has completed. Look for this to be a growing  
 
a refactoring after it has completed. Look for this to be a growing  
 
area of innovation in future releases of Eclipse.
 
area of innovation in future releases of Eclipse.
 
  
 
== See Also: ==
 
== See Also: ==
 
+
*[[FAQ_How_do_I_participate_in_a_refactoring?]]
[[FAQ_How_do_I_participate_in_a_refactoring%3F]]
+
  
 
<hr><font size=-2>This FAQ was originally published in [http://www.eclipsefaq.org Official Eclipse 3.0 FAQs]. Copyright 2004, Pearson Education, Inc. All rights reserved. This text is made available here under the terms of the [http://www.eclipse.org/legal/epl-v10.html Eclipse Public License v1.0].</font>
 
<hr><font size=-2>This FAQ was originally published in [http://www.eclipsefaq.org Official Eclipse 3.0 FAQs]. Copyright 2004, Pearson Education, Inc. All rights reserved. This text is made available here under the terms of the [http://www.eclipse.org/legal/epl-v10.html Eclipse Public License v1.0].</font>

Revision as of 22:16, 29 May 2006

At the EclipseCon conference in 2004, a great deal of interest sparked the idea of adding more generic language IDE infrastructure to Eclipse. Many people have been impressed by the powerful functionality in the Eclipse Java tooling and would like to be able to leverage that support in other languages. This is often currently done by cloning JDT and then hacking out the Java-specific parts and replacing them with a different language. Clearly, this is not very efficient and results in an ongoing effort to catch up to JDT as it continues to add new features.

Eclipse 3.0 includes a first attempt at &#147;bubbling up&#148; some of the JDT functionality into a generic layer. This generic programming-language tooling layer is called the Eclipse Language Toolkit, or LTK. To start, this generic layer has infrastructure for language-independent refactorings in two new projects:

  • org.eclipse.ltk.core.refactoring
  • org.eclipse.ltk.ui.refactoring

The Refactoring class represents the entire refactoring lifecycle, including precondition checks, generating the set of changes, and post-condition checks. The Change class itself performs more expensive validation on the input to determine whether the refactoring is appropriate and performs the workspace modifications induced by the refactoring. A Change instance can also encapsulate an undo for another change, allowing the user to back out of a refactoring after it has completed. Look for this to be a growing area of innovation in future releases of Eclipse.

See Also:


This FAQ was originally published in Official Eclipse 3.0 FAQs. Copyright 2004, Pearson Education, Inc. All rights reserved. This text is made available here under the terms of the Eclipse Public License v1.0.

Back to the top