autocomplete-java
autocomplete-java copied to clipboard
Java autocompletion for Atom editor
I have `.classpath` in my gitignore and generate it for each project I work on. This makes `autocomplete-java` not do anything at all. I have tracked the issue to [this...
I want my imports to be declared outside of the class, but autocomplete-java only wants to put them inside the class. Is is possible to change this behavior so that...
As the title says, the package doesn't currently autocomplete when inner classes are involved. Consider the example: ``` javax.ws.rs.core.Response.ok().build(); ``` [Response](http://docs.oracle.com/javaee/7/api/javax/ws/rs/core/Response.html).ok() returns an instance of the static inner class [Response.ResponseBuilder](http://docs.oracle.com/javaee/7/api/javax/ws/rs/core/Response.ResponseBuilder.html),...
- [ ] Create a separate atom-java-project package which parses/indexes all java related project content (build properties, classes, java sources, etc) and provides centralized java configuration. It will be used...
Some extra libraries like jfxrt.jar are on Java default classpath, but are not currently loaded by autocomplete-java. Load also them after class loading has been optimized (issue #13). NOTE FOR...
Class descriptions are currently read with javap command and unfortunately it doesn't print out parameter names. But if a java source file exists for a class, we can scan it...
e.g. super class has a method 'someMethod(String str)'. User writes 'som' while editing inherited class and autocomplete provides boilerplate implementation as a snippet. Snippet also includes the @Override annotation. Dictionary...