Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » Java Development Tools (JDT) » Display list of functions in methods to select from(Display list of functions in methods to select from)
Display list of functions in methods to select from [message #1869414] Thu, 15 August 2024 23:48 Go to next message
Arthur Chan is currently offline Arthur ChanFriend
Messages: 7
Registered: March 2020
Junior Member
After installing Eclipse 2024-06, when I create an instance of the method in the Controller class, Eclipse does not display its list of functions . Yes, I have imported and autowired the service.
For example
Students student = studentService.getById(sId);

The function getById() and others like updateStud(sId) etc are not displayed for me to choose from. Yes, I can navigate to the service and choose the functions, but that takes me away from the Controller, so its not a show-stopper, just annoying.
Can anyone help me fix this please?
Re: Display list of functions in methods to select from [message #1869417 is a reply to message #1869414] Fri, 16 August 2024 02:31 Go to previous messageGo to next message
Nitin Dahyabhai is currently offline Nitin DahyabhaiFriend
Messages: 4507
Registered: July 2009
Senior Member

You haven't given enough details about what's already there to guess at what to fix.

_
Nitin Dahyabhai
Eclipse Web Tools Platform
Re: Display list of functions in methods to select from [message #1869444 is a reply to message #1869417] Fri, 16 August 2024 19:30 Go to previous message
Arthur Chan is currently offline Arthur ChanFriend
Messages: 7
Registered: March 2020
Junior Member
Well, normally I'd get a drop down list of functions top choose from e.g.

Students student = studentService.

and Eclipse used to display a list of all declarations in StudentService e.g.

getStudentById();
updateStudent();
removeStudent();
...

And I'd pick one function, so I'd click on getStudentById and insert the variable sId

Students student = studentService.getSudentById(sId);

But now, Eclipse does not display a list of declarations from service, so I just typed in the function I need. As said, its not a show stopper, but its annoying,

Previous Topic:Any help
Next Topic:Display list of functions in methods to select from
Goto Forum:
  


Current Time: Fri Jan 24 21:25:54 GMT 2025

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

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

Back to the top