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 "JDT Core"

(New page: JDT/Core is the Java infrastructure of the Java IDE. It includes: * An incremental Java compiler. Implemented as an Eclipse builder, it is based on technology evolved from VisualAge for Ja...)
 
(Links)
(11 intermediate revisions by 6 users not shown)
Line 1: Line 1:
 +
{{Infobox
 +
| name = JDT Core
 +
| download = http://download.eclipse.org/eclipse/downloads/
 +
| website = http://www.eclipse.org/jdt/core/index.php
 +
| list = jdt-core-dev
 +
| newsgroup = eclipse.tools.jdt
 +
| product = JDT
 +
| component = Core
 +
| source = http://git.eclipse.org/c/jdt/eclipse.jdt.core.git
 +
}}
 +
 
JDT/Core is the Java infrastructure of the Java IDE. It includes:
 
JDT/Core is the Java infrastructure of the Java IDE. It includes:
* An incremental Java compiler. Implemented as an Eclipse builder, it is based on technology evolved from VisualAge for Java compiler. In particular, it allows to run and debug code which still contains unresolved errors.
 
* A Java Model that provides API for navigating the Java element tree. The Java element tree defines a Java centric view of a project. It surfaces elements like package fragments, compilation units, binary classes, types, methods, fields.
 
* A Java Document Model providing API for manipulating a structured Java source document.
 
* Code assist and code select support.
 
* An indexed based search infrastructure that is used for searching, code assist, type hierarchy computation, and refactoring. The Java search engine can accurately find precise matches either in sources or binaries.
 
* Evaluation support either in a scrapbook page or a debugger context.
 
* Source code formatter
 
  
The JDT/Core infrastructure has no built-in JDK version dependencies, it also does not depend on any particular Java UI and can be run headless.
+
*An incremental Java compiler. Implemented as an Eclipse builder, it is based on technology evolved from VisualAge for Java compiler. In particular, it allows to run and debug code which still contains unresolved errors.
 +
*A Java Model that provides API for navigating the Java element tree. The Java element tree defines a Java centric view of a project. It surfaces elements like package fragments, compilation units, binary classes, types, methods, fields.
 +
*A Java Document Model providing API for manipulating a structured Java source document.
 +
*Code assist and code select support.
 +
*An indexed based search infrastructure that is used for searching, code assist, type hierarchy computation, and refactoring. The Java search engine can accurately find precise matches either in sources or binaries.
 +
*Evaluation support either in a scrapbook page or a debugger context.
 +
*Source code formatter.
 +
 
 +
The JDT/Core infrastructure has no built-in JDK version dependencies, it also does not depend on any particular Java UI and can be run headless.  
  
[[JDT/Core Committer FAQ]]
+
== Links  ==
  
==Links==
+
*[[JDT|JDT Wiki Page]]  
*[[JDT | JDT Wiki Page]]
+
*[[JDT Core Committer FAQ]]
*[http://www.eclipse.org/jdt/core/index.php JDT/Core Home Page]
+
*[[JDT Core Programmer Guide]]
 +
*[[JDT/FAQ]]
 +
*[[JDT Core/Plan/4.7]]
  
[[Category:Eclipse Project]]
+
[[Category:Eclipse_Project]] [[Category:JDT]]
[[Category:JDT]]
+

Revision as of 05:09, 19 July 2016

JDT Core
Website
Download
Community
Mailing ListForumsIRCmattermost
Issues
OpenHelp WantedBug Day
Contribute
Browse Source

JDT/Core is the Java infrastructure of the Java IDE. It includes:

  • An incremental Java compiler. Implemented as an Eclipse builder, it is based on technology evolved from VisualAge for Java compiler. In particular, it allows to run and debug code which still contains unresolved errors.
  • A Java Model that provides API for navigating the Java element tree. The Java element tree defines a Java centric view of a project. It surfaces elements like package fragments, compilation units, binary classes, types, methods, fields.
  • A Java Document Model providing API for manipulating a structured Java source document.
  • Code assist and code select support.
  • An indexed based search infrastructure that is used for searching, code assist, type hierarchy computation, and refactoring. The Java search engine can accurately find precise matches either in sources or binaries.
  • Evaluation support either in a scrapbook page or a debugger context.
  • Source code formatter.

The JDT/Core infrastructure has no built-in JDK version dependencies, it also does not depend on any particular Java UI and can be run headless.

Links

Back to the top