All Questions
Tagged with autocomplete java
593 questions
0
votes
0
answers
36
views
VSCode Java Autocomplete Not Working After Line Break Comment in Method Chaining with Lambdas
I’m experiencing an issue with Visual Studio Code when writing Java code. Specifically, when I add // at the end of a line to force a line break for formatting purposes, the autocomplete feature of ...
3
votes
2
answers
113
views
Populating JavaFX ControlsFX Autocompletion Textfield resulting in duplicate content
I've been using the JavaFX ControlsFX TextFields.bindAutoCompletion() with asynchronous javafx tasks in order to populate autocompletion results from my neo4j database after a user enters two ...
0
votes
0
answers
46
views
Is Intellij supposed to use autocompletion for classes you import, just like it would eg for JFrame?
If I type import javax.swing.JFrame; at the top of my file, and then in a method definition I type "JFra", it will autocomplete it to "JFrame", but if I type "import MainFrame;...
0
votes
0
answers
20
views
Capturing strings with accented characters into an AutoCompleteTextView
My concern is : when the user begins writing some characters into an AutoCompleteTextView edit field, I would like that, even if he enters the equivalent un-accented characters, the actv drop down ...
0
votes
2
answers
98
views
How to disable automatic adding of opening parenthesis in on autocomplete with the VS Code Java Language Support extension?
In VSCode if you type Java code such as this ...
new ArrayList(
... while using autocomplete you end up with:
new ArrayList<>((
Some kind of "feature" is automatically adding ...
0
votes
0
answers
14
views
Auto populate data in same activity
I'm currrently creating an autocomplete name, and i want to auto populate all fields base on the selected name on the same activity and display it in edit text fields.
I tried to pass the value to the ...
0
votes
1
answer
101
views
How to change code generation settings in IntelliJ?
I have the following variables in an object:
private String mName;
private String mArtist;
private String mWhosampledPage;
private String mImage;
private List<Pair<String, String>> ...
1
vote
1
answer
233
views
Autocomplete lombok with eclipse
I don't know if this is a bug or misconfiguration in eclipse with lombok. Eclipse recognizes all annotations but when I try to use:
val list = new ArrayList<MyObject>();
list only hace Object ...
1
vote
1
answer
733
views
Eclipse 2023-06 suddenly no longer auto completing 'sysout'
While I recognize that this problem has been asked before, I have attempted solutions from multiple different threads with no solution as of yet.
5 days ago when I was using Eclipse I had no issues ...
1
vote
1
answer
57
views
Disable parameter selection after completing "sout" in vscode
After I write
sout
and use auto completion for it to be System.out.println();
It shows this
and I want to disable it..
Hope someone can help me, thanks in advance!
I tried many configurations related ...
1
vote
0
answers
68
views
MongoDB Autocomplete index doesn't get result
I have a collection which name called 'airport' and i have Atlas Auto Complete index you can see JSON config below.
{
"mappings": {
"dynamic": false,
"fields": {...
0
votes
1
answer
110
views
Eclipse autocompletion for jdk.* packages does not work
I write here because I noticed a strange behaviour of Eclipse IDE (2022-12).
Basically, the autocompletition does not work properly when I use a class from a jdk.* package.
For example:
import jdk....
0
votes
3
answers
3k
views
why autocomplition is not working for application.properties file in vs code for spring boot project?
I have created a Spring Boot project in Visual Studio Code. My issue is that autocompletion is not working in my application.settings file, it works fine in other parts of project. Any help will be ...
1
vote
1
answer
454
views
JavaFX - Autocompletion TextField that suggests only matching item starting with input (SuggestionProvider not accessible)
I would like the Autocompletion to suggests only matching item that START with the user's input, instead of showing all the item that CONTAIN the user's input.
One way I found is to use ...
1
vote
1
answer
66
views
In Eclipse how can I make sysout work inside a JSP scriplet
In Eclipse (version 2021-09) I would like to use the sysout template in the scriptlet area of a JSP page.
So, in my JSP editor I have:
...
<%
...
[cursor here]
...
%>
...
When I now type ...