Skip to main content



      Home
Home » Language IDEs » Java Development Tools (JDT) » [Q] About implementation of code assist
[Q] About implementation of code assist [message #8119] Mon, 28 April 2003 20:34 Go to next message
Eclipse UserFriend
Originally posted by: liks.dkpower.com

Hi
I wonder how code assist function is implemented.
I wanna know about development process of code assist function.
How I get a information of code assist function?

Have a nice day!

- liks -
Re: [Q] About implementation of code assist [message #8370 is a reply to message #8119] Tue, 29 April 2003 06:48 Go to previous message
Eclipse UserFriend
The Java codeassist is tightly integrated with the Java compiler. It uses a
variation on the standard parser (CompletionParser) which is better capable
of recovering in incomplete source code.
It will rebuild some internal AST, which contains enough context to infer
relevant completions after the fact.
This AST is fed to the name resolver of the compiler, which will decorate it
with some type information which is then used to infer the proper
completions.

@see org.eclipse.jdt.internal.codeassist.CompletionEngine

"Jou sung-shik" <liks@dkpower.com> wrote in message
news:b8khba$toj$1@rogue.oti.com...
> Hi
> I wonder how code assist function is implemented.
> I wanna know about development process of code assist function.
> How I get a information of code assist function?
>
> Have a nice day!
>
> - liks -
>
>
>
Previous Topic:IWorkinCopy should extend ICompilationUnit, and not the opposite
Next Topic:CVS: All files are out of sync from time to time
Goto Forum:
  


Current Time: Sun Jun 08 23:37:45 EDT 2025

Powered by FUDForum. Page generated in 0.02541 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top